tests/testthat/test-read_neighborhood.R

context("read_neighborhood")

# skip tests because they take too much time
skip_if(Sys.getenv("TEST_ONE") != "")
testthat::skip_on_cran()


# Reading the data -----------------------

test_that("read_neighborhood", {

  # read data
  test_sf <- read_neighborhood(showProgress = F)

  # check sf object
  testthat::expect_true(is(test_sf, "sf"))



  # # check projection
  # testthat::expect_equal(sf::st_crs(test_sf)$epsg, 4674)

})



# ERRORS and messagens  -----------------------
test_that("read_neighborhood", {

  # Wrong year
  testthat::expect_error(read_neighborhood(year=9999999))
  testthat::expect_error(read_neighborhood(year="xxx"))
  testthat::expect_error(read_neighborhood(tp="xxx"))


})

Try the geobr package in your browser

Any scripts or data that you put into this service are public.

geobr documentation built on Sept. 21, 2023, 9:07 a.m.