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-topics-external.R
test_that("can get info about external function", {
expect_snapshot(str(ext_topics("base::mean")))
# and column names match
pkg <- as_pkgdown(test_path("assets/reference"))
expect_equal(names(ext_topics("base::mean")), names(pkg$topics))
})
test_that("fails if documentation not available", {
expect_snapshot(ext_topics("base::doesntexist"), error = TRUE)
})