Nothing
# load test data
# load(file = "tests/testthat/helper_data.rda")
load(file = "helper_data.rda")
allList <- mergeLabels(df1 = df1, df2 = df2)
### create
test_that("GADS DB creation", {
expect_message(createGADS(allList = allList, pkList = pkList, fkList = fkList, filePath = ":memory:"),
"filePath points to work memory")
expect_message(createGADS(allList = df1, pkList = list(df1 = "ID1"), filePath = ":memory:"),
"filePath points to work memory")
expect_error(createGADS(allList = df1, pkList = "ID1", filePath = ":memory:"), "All input lists have to be named")
expect_error(createGADS(allList = list(df1), pkList = list(df1 = "ID1"), filePath = ":memory:"))
})
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.