我在本地环境中调用test_file时遇到问题。
local({ newvar <- 1; expect_equal(newvar, 1); });
工作正常。
local({
newvar <- 1;
test_that('newvar is equal to 1:', { expect_equal(newvar, 1) });
});
工作正常。
local( { newvar <- 1; test_file('simple.test.R'); });
错误:未找到对象'newvar'
simple.test.R的内容很简单:
context('local env test');
test_that('local env test', { expect_equal(newvar, 1) })
帮助表示感谢!谢谢。
编辑:
我要做的是从shinyAce(https://github.com/trestletech/shinyAce)读取一些代码,并检查它是否有效(mets一些定义的要求)。我正在使用'local()',因此在shinyAce块中定义的任何指定变量都不会保留在环境中。
答案 0 :(得分:2)
以下是test_file
的来源:
function (path, reporter = "summary")
{
reporter <- find_reporter(reporter)
with_reporter(reporter, {
sys.source(path, new.env(parent = globalenv()), chdir = TRUE)
end_context()
})
}
关键是:
sys.source(path, new.env(parent = globalenv()), chdir = TRUE)
该文件在全局环境下的新环境中执行,而newvar
仅在您创建的本地环境中可用。
你的最终目标究竟是什么?我们可以尝试提供帮助。或者你只是好奇吗?