Nothing
test_that("to_snake_case", {
expect_identical(to_snake_case("Country Name"), "country_name")
expect_identical(to_snake_case("Country.Code"), "country_code")
expect_identical(to_snake_case("CountryCode"), "country_code")
expect_identical(to_snake_case("SeriesCode"), "series_code")
expect_identical(to_snake_case("X2.alpha.code"), "x2_alpha_code")
expect_identical(to_snake_case("WB-2 code"), "wb_2_code")
expect_identical(to_snake_case("DESCRIPTION"), "description")
expect_identical(to_snake_case("GDPGrowth"), "gdp_growth")
expect_identical(to_snake_case("IMFData"), "imf_data")
expect_identical(to_snake_case("__leading_trailing__"), "leading_trailing")
expect_identical(
to_snake_case(c("CountryCode", "SeriesCode", "DESCRIPTION")),
c("country_code", "series_code", "description")
)
})
test_that("clean_strings", {
data <- data.frame(
a = c(" hello ", " world", " ", "", "!"),
b = c(" test ", "data", "", " ", "."),
c = 1:5
)
actual <- clean_strings(data)
expected <- data.frame(
a = c("hello", "world", NA, NA, "!"),
b = c("test", "data", NA, NA, "."),
c = 1:5
)
expect_identical(actual, expected)
})
test_that("format_date works", {
# both dates provided
expect_identical(format_date("2024", "2025"), "2024:2025")
expect_identical(format_date("2024M01", "2025Q1"), "2024M01:2025Q1")
# only start date provided
expect_identical(format_date("2024", NULL), "2024")
expect_identical(format_date("2024M01", NULL), "2024M01")
# only end date provided
expect_identical(format_date(NULL, "2025"), "2025")
expect_identical(format_date(NULL, "2025Q1"), "2025Q1")
# neither date provided
expect_null(format_date(NULL, NULL))
# different types of inputs
expect_identical(format_date(2024L, 2025L), "2024:2025")
expect_identical(format_date(2024L, NULL), 2024L)
expect_identical(format_date(NULL, 2025L), 2025L)
# Test for edge cases with empty strings
expect_identical(format_date("", ""), ":")
expect_identical(format_date("2024", ""), "2024:")
expect_identical(format_date("", "2025"), ":2025")
})
test_that("is_dateish works", {
# NULL input
expect_true(is_dateish(NULL, null_ok = TRUE))
# valid year
expect_true(is_dateish(2024))
expect_true(is_dateish("2024"))
# valid year with month
expect_true(is_dateish("2024M01"))
expect_true(is_dateish("2024M12"))
# valid year with quarter
expect_true(is_dateish("2024Q1"))
expect_true(is_dateish("2024Q4"))
# invalid lengths
expect_false(is_dateish(c("2024", "2025")))
expect_false(is_dateish(c("2024M01", "2024Q1")))
# invalid formats
expect_false(is_dateish("202"))
expect_false(is_dateish("2024M13"))
expect_false(is_dateish("2024Q5"))
expect_false(is_dateish("2024M00"))
expect_false(is_dateish("2024X01"))
expect_false(is_dateish("24M01"))
expect_false(is_dateish("2024-Q1"))
expect_false(is_dateish("2024/M01"))
})
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.