Nothing
context("SaveLoadConfig")
test_that("saveConfig works", {
loc <- tempfile()
saveConfig(configList = list(a=1, b=2),loc)
testthat::expect_true(file.exists(loc))
})
test_that("loadConfig works", {
loc <- tempfile()
saveConfig(configList = list(a=1, b=2),loc)
config <- loadConfig(loc)
testthat::expect_equal(list(a=1, b=2), config)
})
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.