## Data for tests ----
df_net <- data.frame("data_type" = rep("Net", 6),
"profile_date_time" = c("01/02/1999", "01/03/2020",
"01/03/2022", "01/04/2023",
"01/07/2024", NA),
"site_lat_start_decimal" = c(1, 1, 2, -3, -3, 3),
"sample_id" = c(1, 1, 2, 3, 3, 3))
df_trap <- data.frame("data_type" = rep("Sediment trap", 6),
"sample_date_time_start" = c("01/02/1999", "01/03/2020",
"01/03/2022", "01/04/2023",
"01/07/2024", NA),
"site_lat_start_decimal" = c(1, 1, 2, -3, -3, 3),
"sample_id" = c(1, 1, 2, 3, 3, 3))
## plot_record_by_season() ----
test_that("Test plot_record_by_season() for success", {
expect_silent({ gg <- plot_record_by_season(df_net) })
expect_true("gg" %in% class(gg))
expect_true("ggplot" %in% class(gg))
expect_silent({ gg <- plot_record_by_season(df_trap) })
expect_true("gg" %in% class(gg))
expect_true("ggplot" %in% class(gg))
vdiffr::expect_doppelganger("Plot record by season", gg)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.