Nothing
context("sudano")
###################
# sudano testthat #
###################
test_that("sudano throws error with invalid arguments", {
# Unavailable geography
expect_error(sudano(geo_small = "zcta", state = "DC", year = 2020,
subgroup = "NHoLB", quiet = TRUE))
expect_error(sudano(geo_large = "block group", state = "DC", year = 2020,
subgroup = "NHoLB", quiet = TRUE))
# Unavailable year
expect_error(sudano(state = "DC", year = 2005,
subgroup = "NHoLB", quiet = TRUE))
# Unavailable subgroup
expect_error(sudano(state = "DC", year = 2020,
subgroup = "terran", quiet = TRUE))
skip_if(Sys.getenv("CENSUS_API_KEY") == "")
# Incorrect state
expect_error(sudano(state = "AB", year = 2020,
subgroup = "NHoLB", quiet = TRUE))
}
)
test_that("sudano works", {
skip_if(Sys.getenv("CENSUS_API_KEY") == "")
expect_silent(sudano(state = "DC", year = 2020,
subgroup = c("NHoLB", "HoLB")))
expect_silent(sudano(state = "DC", year = 2020,
subgroup = "NHoLB", quiet = TRUE))
expect_silent(sudano(state = "DC", year = 2020,
subgroup = c("NHoLB", "HoLB"), quiet = TRUE))
}
)
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.