tests/testthat/test-cfbd_play_types.R

cols <- c("play_type_id", "text", "abbreviation")

test_that("CFB Play Types", {
  skip_on_cran()
  x <- cfbd_play_types()
  if (is.null(x) || !is.data.frame(x) || nrow(x) == 0L) {
    skip("CFBD rate-limited or returned no rows")
  }
  expect_equal(nrow(x), 49)
  expect_equal(ncol(x), 3)
  expect_setequal(colnames(x), cols)
  expect_s3_class(x, "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.