library(testthat)
library(whatr)
test_that("full board returns from HTML", {
rand_wait()
b <- whatr_html(6185) %>% whatr_board()
expect_s3_class(b, "tbl")
expect_length(b, 7)
})
test_that("full board returns from game ID", {
rand_wait()
b <- whatr_board(game = 6185)
expect_s3_class(b, "tbl")
expect_length(b, 7)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.