Nothing
test_that("deps specified in various ways", {
expect_equal(
find_deps(system.file("demopkg", package = "suggests")),
data.frame(
package_used = c("stats", "tools", "utils"),
in_file = "R/median_first_ten.R",
in_expr = "median_first_ten"
)
)
expect_equal(
find_deps(system.file("demopkg", package = "suggests"), threshold = 0),
data.frame(
package_used = character(),
in_file = character(),
in_expr = character()
)
)
})
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.