tests/testthat/test-cfbd_game_media.R

cols <- c(
  "game_id", "season", "week", "season_type", "start_time",
  "is_start_time_tbd", "home_team", "home_conference", "away_team",
  "away_conference", "tv", "radio", "web"
)

test_that("CFB Game Media", {
  skip_on_cran()
  x <- cfbd_game_media(2019, week = 1, conference = "ACC")

  y <- cfbd_game_media(2018, week = 4, conference = "Ind")
  expect_equal(colnames(x), cols)
  expect_equal(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 June 14, 2022, 1:05 a.m.