context("read_region") # skip tests because they take too much time skip_if(Sys.getenv("TEST_ONE") != "") testthat::skip_on_cran() # Reading the data ----------------------- test_that("read_region", { # read data test_sf <- read_region() # check sf object expect_true(is(test_sf, "sf")) # check number of rows expect_equal(nrow(test_sf), 5) }) # ERRORS and messagens ----------------------- test_that("read_region", { # Wrong year expect_error(read_region(year=9999999)) })