Nothing
cols <- c(
"first_name", "last_name","hire_date", "school", "year", "games",
"wins", "losses", "ties", "preseason_rank", "postseason_rank", "srs", "sp_overall",
"sp_offense", "sp_defense"
)
test_that("CFB Coaches", {
skip_on_cran()
x <- cfbd_coaches(first = "Nick", last = "Saban", team = "alabama")
if (is.null(x) || !is.data.frame(x) || nrow(x) == 0L) {
skip("CFBD rate-limited or returned no rows")
}
# Subset direction (expected subset of actual), per the repo convention:
# CFBD adds columns over time and an exact set/count assertion turns that
# into a red build for a change that broke nothing.
expect_in(cols, colnames(x))
expect_s3_class(x, "data.frame")
})
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.