Nothing
context(".unlockENVOverride")
library(checkmate)
library(mockery)
test_that(
".unlockENVOverride return empty when override ENV doesn't exist",
{
stub(.unlockENVOverride, "Sys.getenv", "")
x <- .unlockENVOverride("TestRedcapAPI", url)
expect_class(x, "list")
expect_true(length(x$TestRedcapAPI) == 0)
}
)
test_that(
".unlockENVOverride will stop when only one of two ENV's are found",
{
stub(.unlockENVOverride, "sapply", c("", "YO"))
expect_error(.unlockENVOverride(c("x", "y"), url))
}
)
test_that(
".unlockENVOverride returns an entry for every connection",
{
stub(.unlockENVOverride, "Sys.getenv", "xyz")
x <- .unlockENVOverride(c("TestRedcapAPI", "Sandbox"),
list(function(...) TRUE, function(...) TRUE))
expect_true(x$TestRedcapAPI)
expect_true(x$Sandbox)
}
)
test_that(
".unlockENVOverride returns an entry for every connection renamed as requested",
{
m <- mock(1, 2)
f <- function(key, ...) m(key, ...)
stub(.unlockENVOverride, "Sys.getenv", "xyz")
x <- .unlockENVOverride(c(rcon="TestRedcapAPI", sand="Sandbox"),
list(f,f),
abc=3)
expect_equal(x$rcon,1)
expect_equal(x$sand,2)
expect_called(m, 2)
expect_equal(mock_args(m)[[1]][['abc']], 3)
expect_equal(mock_args(m)[[2]][['abc']], 3)
}
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.