Nothing
test_that("uninstalled_formats()", {
skip_on_cran()
formats <- uninstalled_formats()
if (is.null(formats)) {
expect_true(install_formats())
} else {
expect_type(formats, "character")
}
})
test_that("show_unsupported_formats (in the fully supported environment) on CI", {
skip_on_cran()
for (pkg in attr(rio_formats, "suggested_packages")) {
skip_if_not_installed(pkg)
}
expect_false(show_unsupported_formats())
expect_message(show_unsupported_formats(), "All default")
})
test_that("show_unsupported_formats (in the partial supported environment) on CI", {
skip_on_cran()
fake_uninstalled_formats <- function() {
return(c("readODS"))
}
with_mocked_bindings(code = {
expect_true(show_unsupported_formats())
expect_message(show_unsupported_formats(), "These formats are not supported")
}, `uninstalled_formats` = fake_uninstalled_formats)
})
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.