Nothing
test_that("exported objects exist (aware of exportMethods)", {
skip()
skip_if_not(requireNamespace("robustfa", quietly = TRUE))
details <- dangling_exports_details("robustfa")
if (nrow(details)) {
msg <- paste0(
"Dangling exports in NAMESPACE:\n",
paste0(
sprintf(" - %s (NAMESPACE:%s)%s",
details$name,
ifelse(is.na(details$namespace_line), "?", details$namespace_line),
ifelse(is.na(details$namespace_text) | details$namespace_text == "", "", paste0("\n ", details$namespace_text))
),
collapse = "\n"
)
)
fail(msg)
} else {
succeed()
}
})
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.