Nothing
test_that("fetch_venues returns venue data for NRL 2023", {
venues <- fetch_venues(season = 2023, league = "nrl")
expect_s3_class(venues, "data.frame")
expect_true(all(c("venue", "games", "avg_attendance", "season", "venue_link") %in% names(venues)))
expect_gt(nrow(venues), 0)
expect_true(all(venues$season == 2023))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.