我正在构建的包中有一个函数,它将十六进制代码分配给全球环境以供分析师使用......
optiplum<-function(){
assign(
x="optiplum",
value=rgb(red=129,green=61,blue=114, maxColorValue = 255),
envir=.GlobalEnv)
}
我的单元测试代码是:
test_that("optiplum - produces the correct hex code",{
optiplum()
expect_true(identical(optiplum,"#813D72"))
})
当我手动运行代码时,没有错误:
> str(optiplum)
chr "#813D72"
> str("#813D72")
chr "#813D72"
> identical("#813D72",optiplum)
[1] TRUE
> expect_true(identical(optiplum,"#813D72"))
当我运行 test_file() 时也不会出错
> test_file("./tests/testthat/test-optiplum.R")
optiplum : .
但是,当我将测试作为 devtools 工作流程的一部分运行时:
> test()
Testing optINTERNAL
Loading optINTERNAL
optiplum : 1
1. Failure: optiplum - produces the correct hex code --------------------------------------------------------------------------------------------------------------
identical(optiplum, "#813D72") isn't true
任何人对为什么会发生这种情况以及如何解决这种情况有任何想法?