Nothing
test_that("vld_index", {
expect_true(vld_index(1L))
expect_true(vld_index(2:1))
expect_false(vld_index(integer(0)))
expect_false(vld_index(0L))
expect_false(vld_index(NA_integer_))
expect_false(vld_index(1))
})
test_that("chk_index", {
expect_null(chk_index(1L))
expect_error(chk_index(0L),
"^`0L` must be greater than 0, not 0[.]$",
class = "chk_error"
)
})
test_that("chk_index errors with x = NA", {
expect_snapshot(
error = TRUE,
chk_index(NA)
)
})
test_that("chk_index errors with empty x", {
expect_snapshot(
error = TRUE,
chk_index(integer(0))
)
})
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.