Nothing
test_that("loaded_packages", {
lp <- loaded_packages()
expect_equal(sort_ci(lp$package), sort_ci(loadedNamespaces()))
expect_identical(
gsub("-", ".", lp$loadedversion),
unlist(lapply(lp$package, function(x) as.character(packageVersion(x))))
)
expect_true(all(file.exists(lp$path)))
expect_equal(
paste0("package:", lp$package) %in% search(),
lp$attached
)
})
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.