Nothing
context("read_country")
# skip tests because they take too much time
skip_if(Sys.getenv("TEST_ONE") != "")
testthat::skip_on_cran()
# Reading the data -----------------------
test_that("read_country", {
# read data
test_sf <- read_country(year=2020, simplified = FALSE)
test_sf <- read_country(year=2020)
# check sf object
testthat::expect_true(is(test_sf, "sf"))
test_duck <- read_country(year=2020, output = "duckdb")
expect_true(is(test_duck, "duckspatial_df"))
test_arrw <- read_country(year=2020, output = "arrow")
expect_true(is(test_arrw, "ArrowObject"))
})
# ERRORS and messagens -----------------------
test_that("read_country", {
# Wrong date
testthat::expect_error(read_country())
testthat::expect_error(read_country(year=9999999))
testthat::expect_error(read_country(year="xxx"))
testthat::expect_error(read_country(tp="xxx"))
})
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.