test_that("`vac_plot_goal()` matches doppelganger", {
data <- tibble::tibble(
asiis_pat_id_ptr = c(1:3e4, (1+1e4):3e4, (1+3e4):1e5),
resident = c(rep(TRUE, 1.1e5), rep(FALSE, 1e4)),
dose_count = c(rep(1, 1e4), rep(2, 2e4), rep(1, 2e4), rep(1, 7e4)),
recip_fully_vacc = c(rep(TRUE, 3e4), rep(FALSE, 9e4)),
max_doses = dplyr::if_else(recip_fully_vacc, dose_count, dose_count + 1)
) %>% dplyr::slice_sample(prop = 1)
data %>% vac_count(by = "dose")
mockery::stub(
vac_plot_goal,
"date_vac",
lubridate::as_date
)
suppressWarnings(
vdiffr::expect_doppelganger(
"vaccination goal",
vac_plot_goal(data, date = "2021-04-19"),
path = "vac-goal"
)
)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.