Nothing
is_live_tests_enabled <- function() {
val <- tolower(Sys.getenv("RPDBAPI_RUN_LIVE", "false"))
val %in% c("true", "1", "yes", "on")
}
skip_if_not_live_tests <- function() {
testthat::skip_if_not(
is_live_tests_enabled(),
"Live API tests are disabled. Set RPDBAPI_RUN_LIVE=true to enable."
)
testthat::skip_if_offline()
}
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.