Nothing
test_that("WNBA Player vs Player", {
skip_on_cran()
skip_on_ci()
skip_wnba_stats_test()
x <- wnba_playervsplayer(player_id = '1628932', vs_player_id = '1629488')
if (length(x) == 0 || is.null(x[[1]]) || !is.data.frame(x[[1]]) || nrow(x[[1]]) == 0) {
fail("No rows returned from endpoint at test time")
return(invisible(NULL))
}
cols_x1 <- c(
"GROUP_SET",
"GROUP_VALUE",
"PLAYER_ID",
"PLAYER_NAME",
"GP",
"W",
"L",
"W_PCT",
"MIN",
"FGM",
"FGA",
"FG_PCT",
"FG3M",
"FG3A",
"FG3_PCT",
"FTM",
"FTA",
"FT_PCT",
"OREB",
"DREB",
"REB",
"AST",
"TOV",
"STL",
"BLK",
"BLKA",
"PF",
"PFD",
"PTS",
"PLUS_MINUS",
"NBA_FANTASY_PTS"
)
cols_x2 <- c(
"GROUP_SET",
"PLAYER_ID",
"PLAYER_NAME",
"VS_PLAYER_ID",
"VS_PLAYER_NAME",
"COURT_STATUS",
"GP",
"W",
"L",
"W_PCT",
"MIN",
"FGM",
"FGA",
"FG_PCT",
"FG3M",
"FG3A",
"FG3_PCT",
"FTM",
"FTA",
"FT_PCT",
"OREB",
"DREB",
"REB",
"AST",
"TOV",
"STL",
"BLK",
"BLKA",
"PF",
"PFD",
"PTS",
"PLUS_MINUS",
"NBA_FANTASY_PTS"
)
cols_x3 <- c(
"GROUP_SET",
"GROUP_VALUE",
"PLAYER_ID",
"PLAYER_NAME",
"FGM",
"FGA",
"FG_PCT"
)
cols_x4 <- c(
"GROUP_SET",
"PLAYER_ID",
"PLAYER_NAME",
"VS_PLAYER_ID",
"VS_PLAYER_NAME",
"COURT_STATUS",
"GROUP_VALUE",
"FGM",
"FGA",
"FG_PCT"
)
cols_x5 <- c(
"GROUP_SET",
"PLAYER_ID",
"PLAYER_NAME",
"VS_PLAYER_ID",
"VS_PLAYER_NAME",
"COURT_STATUS",
"GROUP_VALUE",
"FGM",
"FGA",
"FG_PCT"
)
cols_x6 <- c(
"GROUP_SET",
"GROUP_VALUE",
"PLAYER_ID",
"PLAYER_NAME",
"FGM",
"FGA",
"FG_PCT"
)
cols_x7 <- c(
"GROUP_SET",
"PLAYER_ID",
"PLAYER_NAME",
"VS_PLAYER_ID",
"VS_PLAYER_NAME",
"COURT_STATUS",
"GROUP_VALUE",
"FGM",
"FGA",
"FG_PCT"
)
cols_x8 <- c(
"GROUP_SET",
"PLAYER_ID",
"PLAYER_NAME",
"VS_PLAYER_ID",
"VS_PLAYER_NAME",
"COURT_STATUS",
"GROUP_VALUE",
"FGM",
"FGA",
"FG_PCT"
)
cols_x9 <- c(
"PERSON_ID",
"FIRST_NAME",
"LAST_NAME",
"DISPLAY_FIRST_LAST",
"DISPLAY_LAST_COMMA_FIRST",
"DISPLAY_FI_LAST",
"BIRTHDATE",
"SCHOOL",
"COUNTRY",
"LAST_AFFILIATION"
)
cols_x10 <- c(
"PERSON_ID",
"FIRST_NAME",
"LAST_NAME",
"DISPLAY_FIRST_LAST",
"DISPLAY_LAST_COMMA_FIRST",
"DISPLAY_FI_LAST",
"BIRTHDATE",
"SCHOOL",
"COUNTRY",
"LAST_AFFILIATION"
)
expect_in(sort(cols_x1), sort(colnames(x[[1]])))
expect_s3_class(x[[1]], "data.frame")
expect_in(sort(cols_x2), sort(colnames(x[[2]])))
expect_s3_class(x[[2]], "data.frame")
expect_in(sort(cols_x3), sort(colnames(x[[3]])))
expect_s3_class(x[[3]], "data.frame")
expect_in(sort(cols_x4), sort(colnames(x[[4]])))
expect_s3_class(x[[4]], "data.frame")
expect_in(sort(cols_x5), sort(colnames(x[[5]])))
expect_s3_class(x[[5]], "data.frame")
expect_in(sort(cols_x6), sort(colnames(x[[6]])))
expect_s3_class(x[[6]], "data.frame")
expect_in(sort(cols_x7), sort(colnames(x[[7]])))
expect_s3_class(x[[7]], "data.frame")
expect_in(sort(cols_x8), sort(colnames(x[[8]])))
expect_s3_class(x[[8]], "data.frame")
expect_in(sort(cols_x9), sort(colnames(x[[9]])))
expect_s3_class(x[[9]], "data.frame")
expect_in(sort(cols_x10), sort(colnames(x[[10]])))
expect_s3_class(x[[10]], "data.frame")
Sys.sleep(3)
})
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.