Nothing
test_that("`yardstick_event_level()` defaults to 'first'", {
expect_identical(yardstick_event_level(), "first")
})
test_that("`yardstick_event_level()` ignores option - TRUE, with a warning", {
skip_if(getRversion() <= "3.5.3", "Base R used a different deprecated warning class.")
rlang::local_options(lifecycle_verbosity = "warning")
rlang::local_options(yardstick.event_first = TRUE)
expect_snapshot(out <- yardstick_event_level())
expect_identical(out, "first")
})
test_that("`yardstick_event_level()` ignores option - FALSE, with a warning", {
skip_if(getRversion() <= "3.5.3", "Base R used a different deprecated warning class.")
rlang::local_options(lifecycle_verbosity = "warning")
rlang::local_options(yardstick.event_first = FALSE)
expect_snapshot(out <- yardstick_event_level())
expect_identical(out, "first")
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.