tests/testthat/test.nhl_draft_prospects.R

context("nhl_draft_prospects")

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

    res <- nhl_draft_prospects()
    testthat::expect_true(all(
      c(
        "id", "fullName", "link", "firstName", "lastName",
        "birthDate", "height", "weight", "shootsCatches",
        "draftStatus", "birthCountry", "birthCity",
        "birthStateProvince", "nationality", "nhlPlayerId"
      ) %in% names(res)
    ))
  }
)

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.