Nothing
context("checkListElementClass")
test_that("checkListElementClass", {
checkListElementClass(list(1, 5), cl="numeric")
expect_error(checkListElementClass(list(1, "a"), cl="numeric"), "numeric")
xs = list("a", "b")
checkListElementClass(xs, "character")
expect_error(checkListElementClass(xs, "integer"), "character")
})
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.