Nothing
library(lubrilog)
library(cli)
data <- lubrilog::games
f <- function(){
lubrilog::mdy(data$release_date)
}
test_that("mdy works", {
expect_message(
out <- lubrilog::mdy(data$release_date)
)
expect_equal(length(out), nrow(data))
expect_message(f(), "NA values created by parsing")
expect_message(f(), "Original:")
expect_message(f(), "Parsed:")
})
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.