Nothing
test_that("validate_arguments throws errors as expected", {
expect_error(validate_arguments(arg_max_attempts = "1L"))
expect_error(validate_arguments(arg_max_attempts = -1L))
})
test_that("validate_arguments returns nothing as expected", {
expect_null(
validate_arguments(
arg_max_attempts = 3L
)
)
})
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.