Nothing
test_that("Get all versions", {
skip_if_offline()
result <- uis_get_versions()
expect_s3_class(result, "data.frame")
expect_true(all(
c("version", "publication_date", "description", "theme") %in%
colnames(result)
))
})
test_that("Get default version", {
skip_if_offline()
result <- uis_get_versions(default_only = TRUE)
expect_s3_class(result, "data.frame")
expect_true(all(
c("version", "publication_date", "description", "theme") %in%
colnames(result)
))
})
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.