swh:1:snp:bdc19e867479541d0f4994ceaa711217d0dc28ed
Tip revision: 1ad2332a4119217014f512bdf05025fa6f2bb72f authored by Hadley Wickham on 09 April 2020, 13:00:02 UTC
version 1.5.1
version 1.5.1
Tip revision: 1ad2332
test-build-version.R
context("test-build-version.R")
test_that("formatting in DESCRIPTION version is preserved", {
pkg <- as_pkgdown(test_path("assets/version-formatting"))
expect_equal(pkg$version, "1.0.0-9000")
expect_output(init_site(pkg))
build_home_index(pkg, quiet = TRUE)
index <- read_lines(path(pkg$dst_path, "index.html"))
expect_true(any(grepl("1.0.0-9000", index, fixed = TRUE)))
})