tests/testthat/test-read_municipal_seat.R

context("read_municipal_seat")

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

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

test_that("read_municipal_seat", {

  # read data and check sf object
  expect_true(is( read_municipal_seat(), "sf"))

  test_sf <- read_municipal_seat(year=1991)
  expect_true(is(test_sf, "sf"))

})



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

  # Wrong year
  expect_error(read_municipal_seat(year=9999999))
  expect_error(read_municipal_seat(year="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.