tests/testthat/test-tabulate_throughputs_by.R

context("tabulate_throughputs_by")

test_that("tabulate throughputs by year", {

  tabulated <-
    tabulate_throughputs_by(
      ems_and_tput,
      year)

  expected <-
    ems_and_tput %>%
    sum_throughputs_by(
      year) %>%
    tidyr::spread(
      year,
      tput_qty) %>%
    dplyr::select(
      `1991`,
      `1992`,
      tput_unit)

  expect_equal(
    tabulated,
    expected)

})
BAAQMD/qtytools documentation built on June 30, 2022, 6:07 p.m.