tests/testthat/test-read_indigenous_lands.R

context("read_indigenous_land")

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

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

test_that("read_indigenous_land", {

  # check sf object
  test_sf <- read_indigenous_land(year = 2024)
  testthat::expect_true(is(test_sf, "sf"))

  # filter
  test_sf2 <- read_indigenous_land(year = 2024, code_state = "BA")
  testthat::expect_true(nrow(test_sf2) < nrow(test_sf))


})



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

  # Wrong year
  testthat::expect_error(read_indigenous_land())
  testthat::expect_error(read_indigenous_land(year=9999999))
  testthat::expect_error(read_indigenous_land(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 June 23, 2026, 5:06 p.m.