Nothing
test_that("expect error when n = 0 or n < 0", {
expect_error(rm_latest_packages(n = 0))
expect_error(rm_latest_packages(n = -1))
expect_error(rm_latest_packages(n = -1))
expect_error(rm_latest_packages(n = -100))
})
test_that("expect error when n not numeric or not length 1", {
expect_error(rm_latest_packages(n = "hello world"))
expect_error(rm_latest_packages(n = c(32, 2323)))
expect_error(rm_latest_packages(n = mtcars))
})
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.