Nothing
test_that("download_assessment_list works", {
expect_equal(class(suppressMessages(download_assessment_list(-2))), "list")
two_assessments <- suppressMessages(
download_assessment_list(1,id == 8 | id == 12)
)
if(length(two_assessments) != 0) {
# when server responds
expect_message(download_assessment_list(1, id == "hi"), "No matches found. Empty list returned.")
expect_equal(class(two_assessments), "list")
expect_equal(length(two_assessments), 2)
expect_equal(class(two_assessments[[1]]), c("tbl_df",
"tbl",
"data.frame"))
expect_equal(ncol(two_assessments[[1]]), 9)
}
})
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.