Nothing
test_that("Documentation is correct", {
skip_on_cran()
skip_on_ci()
## make sure all folders investigated are correct
expect_silent(res <- cran_incoming())
expect_true(all(names(res) %in% c(
"package", "version", "cran_folder", "time", "size"
)))
expect_equal(ncol(res), 5L)
expect_true(nrow(res) > 1)
expect_identical(
lapply(res, class),
list(
package = "character",
version = c("package_version", "numeric_version"),
cran_folder = "character",
time = c("POSIXct", "POSIXt"),
size = "character"
)
)
})
test_that("only character strings are provided", {
expect_error(cran_incoming(pkg = c(NA, TRUE)), "character vector")
expect_error(cran_incoming(pkg = c("foo", NA)), "character vector")
expect_error(cran_incoming(pkg = 1234L), "character vector")
})
test_that("filtering works", {
skip_on_cran()
skip_on_ci()
res <- cran_incoming()
pkg_test <- sample(res$package, 5L)
res_test <- cran_incoming(pkg = pkg_test)
expect_true(nrow(res_test) >= 5L)
})
test_that("specifying folders works", {
skip_on_cran()
skip_on_ci()
res <- cran_incoming(folders = "archive")
expect_true(nrow(res) > 1 && all(res$cran_folder == "archive"))
res2 <- cran_incoming(folders = c("inspect", "pending"))
expect_true(nrow(res2) > 1 && all(res2$cran_folder %in% c("inspect", "pending")))
})
test_that("sort_by_date works (without archive)", {
skip_on_cran()
unsorted <- cran_incoming(sort_by_date = FALSE)
sorted <- cran_incoming(sort_by_date = TRUE)
skip_if(nrow(sorted) < 2L)
expect_true(max(unsorted$time) == sorted$time[1])
})
test_that("sort_by_date works (with archive)", {
skip_on_cran()
unsorted <- cran_incoming(
sort_by_date = FALSE,
folders = cran_incoming_folders(include_archive = TRUE)
)
sorted <- cran_incoming(
sort_by_date = TRUE,
folders = cran_incoming_folders(include_archive = TRUE)
)
skip_if(nrow(sorted) < 2L)
expect_true(max(unsorted$time) == sorted$time[1])
})
test_that("handling of misformed package name works", {
expect_true(is.na(parse_pkg("pkgnm2.0_pkg_r.tar.gz")$version))
expect_true(is.na(parse_pkg("pkg.tar.gz")$version))
})
test_that("cran_incoming_folders works as expected", {
expect_identical(length(cran_incoming_folders()), 7L)
expect_false(any(grepl("archive", cran_incoming_folders())))
expect_identical(length(cran_incoming_folders(include_archive = TRUE)), 8L)
expect_true(any(grepl("archive", cran_incoming_folders(include_archive = TRUE))))
})
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.