Nothing
# Test the main package testing functions
# ===================================================================
test_that("package testing functions work", {
# Test the minimal test function
expect_no_error({
suppressMessages({
result <- test_package_minimal(verbose = FALSE)
})
})
expect_type(result, "logical")
})
test_that("function availability check works", {
expect_no_error({
suppressMessages({
result <- test_function_availability(verbose = FALSE)
})
})
expect_type(result, "list")
expect_true("function_status" %in% names(result))
})
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.