我的问题类似于r devtools test() errors but testthat test_file() works,但我不确定@ hadley的评论是否也适用于此。
我已经创建了一个R package的最小工作示例,其中使用testthat::test_file
测试单个文件,但使用devtools::test
测试包不会。
这是我的软件包唯一的R文件R/a.R
:
#' @export
generate_data_table <- function() {
data.table(a = 1:10, b = 11:20)
}
这是我的测试文件inst/tests/test-a.R
:
test_that("everything is OK", {
x <- generate_data_table()
expect_equal(x[b == 11]$a, 1)
})
当我运行test_file
时,该测试通过,但当我运行devtools::test
时,我收到以下错误:
> test()
Testing ttdt
Loading ttdt
1
1. Error: everything is OK -----------------------------------------------------
object 'b' not found
1: expect_equal(x[b == 11]$a, 1) at test-a.R:3
2: expect_that(object, equals(expected, label = expected.label, ...), info = info, label = label)
3: condition(object)
4: compare(expected, actual, ...)
5: compare.default(expected, actual, ...)
6: all.equal(x, y, ...)
7: all.equal.numeric(x, y, ...)
8: attr.all.equal(target, current, tolerance = tolerance, scale = scale, ...)
9: mode(current)
10: x[b == 11]
11: `[.data.table`(x, b == 11)
12: `[.data.frame`(x, i)
这是一种正确的行为还是应该被视为data.table
或devtools
中的错误?
这是我的环境:
> sessionInfo()
R version 3.0.2 (2013-09-25)
Platform: x86_64-apple-darwin10.8.0 (64-bit)
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] data.table_1.9.2 testthat_0.8.1 devtools_1.4.1
loaded via a namespace (and not attached):
[1] digest_0.6.4 evaluate_0.5.1 httr_0.2 memoise_0.1 parallel_3.0.2
[6] plyr_1.8.1 Rcpp_0.11.0 RCurl_1.95-4.1 reshape2_1.2.2 stringr_0.6.2
[11] tools_3.0.2 whisker_0.3-2
更新即可。我已更新软件包的依赖项以正确依赖data.table
here,但问题仍然存在。
答案 0 :(得分:3)
如果你
DESCRIPTION
文件test(fresh = TRUE)
一切都应该有用。
使用fresh = TRUE
将确保测试在新的R会话中运行。