tests/testthat/test-cfbd_team_matchup_records.R

cols <- c("start_year", "end_year", "team1", "team1_wins", "team2", "team2_wins", "ties")

test_that("CFB Team Matchup Records", {
  skip_on_cran()
  x <- cfbd_team_matchup_records("Texas", "Oklahoma")

  y <- cfbd_team_matchup_records("Texas A&M", "TCU", min_year = 1975)
  expect_equal(colnames(x), cols)
  expect_equal(colnames(y), cols)
  expect_s3_class(x, "data.frame")
  expect_s3_class(y, "data.frame")
})
saiemgilani/cfbfastR documentation built on Sept. 14, 2024, 2:39 p.m.