Nothing
context("filterNull")
test_that("filterNull", {
li = list(1, 2, NULL, 3)
expect_equal(filterNull(li), list(1, 2, 3))
expect_equal(filterNull(list()), list())
expect_error(filterNull(iris))
})
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.