vcr::use_cassette("get_company_properties", {
test_that("get_company_properties works", {
res <- suppressWarnings(
get_company_properties()
)
expect_is(res, "character")
expect_true(length(res) > 10)
})
test_that("get_company_properties gives warning", {
expect_warning(
get_company_properties(),
"deprecated"
)
})
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.