tests/testthat/test-cfbd_metrics_ppa_games.R

cols <- c(
  "game_id", "season", "week", "season_type", "conference", "team",
  "opponent", "off_overall", "off_passing", "off_rushing", "off_first_down",
  "off_second_down", "off_third_down", "def_overall", "def_passing",
  "def_rushing", "def_first_down", "def_second_down", "def_third_down"
)

test_that("CFB Metrics PPA Games", {
  skip_on_cran()
  x <- cfbd_metrics_ppa_games(year = 2019, team = "TCU")
  if (is.null(x) || !is.data.frame(x) || nrow(x) == 0L) {
    skip("CFBD rate-limited or returned no rows")
  }

  y <- cfbd_metrics_ppa_games(year = 2019, team = "Alabama", week = 11)
  if (is.null(y) || !is.data.frame(y) || nrow(y) == 0L) {
    skip("CFBD rate-limited or returned no rows")
  }
  expect_setequal(colnames(x), cols)
  expect_setequal(colnames(y), cols)
  expect_s3_class(x, "data.frame")
  expect_s3_class(y, "data.frame")
})

Try the cfbfastR package in your browser

Any scripts or data that you put into this service are public.

cfbfastR documentation built on Aug. 24, 2026, 5:13 p.m.