Nothing
context("pin_date")
test_that(desc="pin_date",{
expect_equal(pin_date(pin = c("196408233234", "186408833224")), expected = lubridate::ymd(c("1964-08-23","1864-08-23")))
check_class <- pin_date(pin = c("196408233234", "186408833224"))
expect_true(inherits(check_class, "POSIXct") | inherits(check_class, "Date"))
})
test_that(desc="Handle NA and interimn in pin_date",{
expect_true(is.na(pin_date(as.pin(c(NA,"198501169885")))[1]))
expect_false(is.na(pin_date(as.pin(c(NA,"198501169885")))[2]))
suppressWarnings(expect_true(all(is.na(pin_date(pin = c("19640823C234", "18640883D224"))))))
})
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.