swh:1:snp:bdc19e867479541d0f4994ceaa711217d0dc28ed
Tip revision: 74b598025322cd572dcd58326f0c5fb465f503ab authored by Hadley Wickham on 23 June 2022, 13:00:02 UTC
version 2.0.5
version 2.0.5
Tip revision: 74b5980
test-check.R
test_that("fails if reference index incomplete", {
pkg <- local_pkgdown_site(test_path("assets/reference"), meta = "
reference:
- title: Title
contents: [a, b, c, e]
")
expect_snapshot(check_pkgdown(pkg), error = TRUE)
})
test_that("fails if article index incomplete", {
pkg <- local_pkgdown_site(test_path("assets/articles"), meta = "
articles:
- title: Title
contents: [starts_with('html'), standard, toc-false, widget]
")
expect_snapshot(check_pkgdown(pkg), error = TRUE)
})
test_that("informs if everything is ok", {
pkg <- local_pkgdown_site(test_path("assets/reference"))
expect_snapshot(check_pkgdown(pkg))
})