Nothing
test_that("ESPN CFB Positions Index", {
skip_on_cran()
cols <- c(
"position_id", "name", "display_name", "abbreviation", "leaf",
"parent_id", "position_ref"
)
x <- espn_cfb_positions()
if (is.null(x) || !is.data.frame(x) || nrow(x) == 0) {
skip("No ESPN positions data returned at test time")
}
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.