tests/testthat/test-plot_user_weekly_players.R

# Unit tests for plot_user_weekly_players function

# Test 1: Valid inputs return a plotly object
test_that("good function call returns plotly object", {
  expect_equal(class(plot_user_weekly_players(688281863499907072,
                                               "njbultman74")
               ),
               c("plotly", "htmlwidget"))
})
# Test 2: Invalid display name type throws error
test_that("bad display name argument type throws error", {
  expect_error(plot_user_weekly_players(688281863499907072,
                                        2),
               "Title, display name, and tick color must all be strings.") # nolint
})
# Test 3: Invalid tick color type throws error
test_that("bad tick color argument type throws error", {
  expect_error(plot_user_weekly_players(688281863499907072,
                                        display_name = "njbultman74",
                                        tick_color = TRUE),
               "Title, display name, and tick color must all be strings.") # nolint
})

Try the sleeperapi package in your browser

Any scripts or data that you put into this service are public.

sleeperapi documentation built on April 3, 2025, 6:13 p.m.