test_that("get_bearer correctly reimported from academictwitteR", {
ORI_BEARER <- Sys.getenv("TWITTER_BEARER")
Sys.setenv("TWITTER_BEARER" = "")
expect_error(get_bearer())
Sys.setenv("TWITTER_BEARER" = "ABC")
expect_error(get_bearer(), NA)
expect_equal(get_bearer(), "ABC")
Sys.setenv("TWITTER_BEARER" = ORI_BEARER)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.