Nothing
test_that("basic examples", {
expect_success(expect_base(y, x == 1, data = tibble(x = c(1, 0), y = c(1, NA))))
expect_failure(expect_base(y, x == 1, data = tibble(x = c(1, 0), y = c(1, 1))))
})
test_that("NA check results are handled correctly", {
expect_success(expect_base(y, x == 1, data = tibble(x = c(1, NA), y = c(1, NA))))
expect_failure(expect_base(y, x == 1, data = tibble(x = c(1, NA), y = c(1, 1))))
})
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.