Nothing
test_fixture_path <- function(name) {
testthat::test_path("fixtures", paste0(name, ".rds"))
}
load_test_fixture <- function(name) {
path <- test_fixture_path(name)
testthat::skip_if_not(
file.exists(path),
paste("Missing test fixture:", name)
)
readRDS(path)
}
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.