test_that("KP - Get kpoy", {
skip_on_cran()
skip_on_ci()
skip_kenpom_test()
x <- kp_kpoy(year = 2020)
x1 <- x[[1]]
x2 <- x[[2]]
cols_x1 <- c(
"rk",
"player",
"kpoy_rating",
"team",
"hgt",
"wgt",
"exp",
"home_town",
"year",
"group"
)
cols_x2 <- c(
"rk",
"player",
"game_mv_ps",
"team",
"hgt",
"wgt",
"exp",
"home_town",
"year",
"group"
)
expect_equal(colnames(x1), cols_x1)
expect_equal(colnames(x2), cols_x2)
Sys.sleep(3)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.