Nothing
# BrazilDataAPI - Access Brazilian Data via APIs and Curated Datasets
# Version 0.2.0
# Copyright (C) 2025 Renzo Caceres Rossi
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# get_brazil_life_expectancy
library(testthat)
test_that("get_brazil_life_expectancy() returns tibble with correct structure and types", {
skip_on_cran()
result <- get_brazil_life_expectancy()
# Structure
expect_s3_class(result, "tbl_df")
expect_named(result, c("indicator", "country", "year", "value"))
expect_equal(ncol(result), 4)
expect_equal(nrow(result), 13) # 2010–2022 inclusive
# Types
expect_type(result$indicator, "character")
expect_type(result$country, "character")
expect_type(result$year, "integer")
expect_type(result$value, "double")
})
test_that("get_brazil_life_expectancy() returns only Brazil data", {
skip_on_cran()
result <- get_brazil_life_expectancy()
expect_true(all(result$country == "Brazil"))
})
test_that("get_brazil_life_expectancy() returns correct indicator label", {
skip_on_cran()
result <- get_brazil_life_expectancy()
expected_indicator <- "Life expectancy at birth, total (years)"
expect_true(all(result$indicator == expected_indicator))
})
test_that("get_brazil_life_expectancy() covers the correct years (2010–2022)", {
skip_on_cran()
result <- get_brazil_life_expectancy()
expect_true(all(result$year %in% 2010:2022))
expect_equal(sort(unique(result$year)), 2010:2022)
})
test_that("get_brazil_life_expectancy() years are sorted in descending order", {
skip_on_cran()
result <- get_brazil_life_expectancy()
expect_equal(result$year, sort(result$year, decreasing = TRUE))
})
test_that("get_brazil_life_expectancy() value column contains numeric values or NA", {
skip_on_cran()
result <- get_brazil_life_expectancy()
expect_true(all(is.finite(result$value) | is.na(result$value)))
})
test_that("get_brazil_life_expectancy() has no missing values in year column", {
skip_on_cran()
result <- get_brazil_life_expectancy()
expect_false(any(is.na(result$year)))
})
test_that("get_brazil_life_expectancy() indicator and country columns are consistent", {
skip_on_cran()
result <- get_brazil_life_expectancy()
expect_equal(length(unique(result$indicator)), 1)
expect_equal(length(unique(result$country)), 1)
})
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.