Nothing
test_that("not_null returns FALSE if value is NULL", {
not_null(NULL) %>% expect_false()
})
test_that("not_null returns TRUE if value is not NULL", {
for_all(
a = anything(),
property = function(a) (is.null(a) || not_null(a)) %>% expect_true()
)
})
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.