Nothing
test_that("boe_money_supply() returns expected structure", {
skip_on_cran()
skip_if_offline()
out <- boe_money_supply(from = "2024-01-01", to = "2024-06-30")
expect_s3_class(out, "data.frame")
expect_named(out, c("date", "amount_gbp_m"))
expect_s3_class(out$date, "Date")
expect_type(out$amount_gbp_m, "double")
expect_true(nrow(out) > 0)
})
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.