Nothing
test_that("check_for_aws_env_vars returns true if credentials set", {
skip_if_no_aws_credentials()
expect_true(check_for_aws_env_vars())
})
test_that("check_for_aws_env_vars returns false if credentials unset", {
withr::with_envvar(new = c(
"AWS_ACCESS_KEY_ID" = NA,
"AWS_SECRET_ACCESS_KEY" = NA
), {
expect_false(check_for_aws_env_vars())
})
})
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.