tests/testthat/test.nhl_seasons.R

context("nhl_seasons")

testthat::test_that(
  "nhl_seasons has correct names", {
    testthat::skip_if_offline(host = "nhl.com")
    testthat::skip_if(skipRemoteTests)

    res <- nhl_seasons(2000:2005)
    testthat::expect_equal(
      names(res),
      c(
        "seasonId", "regularSeasonStartDate", "regularSeasonEndDate",
        "seasonEndDate", "numberOfGames", "tiesInUse",
        "olympicsParticipation", "conferencesInUse", "divisionsInUse",
        "wildCardInUse", "url", "copyright"
      )
    )
  }
)

Try the nhlapi package in your browser

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

nhlapi documentation built on Feb. 20, 2021, 9:06 a.m.