Nothing
test_that("All invalidations are captured", {
if(interactive()){
expect_warning(validate_configs(list("c"="foo")),
"Connection configuration for c was invalid; c will not be available")
}
fn <- testthat::test_path("testfiles",
"validate_configs_test.yml")
configs <- read_configs(fn,exclusive=TRUE)
if(interactive()){
expect_warning(validate_configs(configs["no_connection"]),
"Connection configuration for no_connection was invalid; no_connection will not be available")
expect_warning(validate_configs(configs["no_server_type"]),
"Connection configuration for no_server_type was invalid; no_server_type will not be available")
expect_warning(validate_configs(configs["conn_child_is_list"]),
"Connection configuration for conn_child_is_list was invalid; conn_child_is_list will not be available")
expect_warning(validate_configs(configs["no_server"]),
"Connection configuration for no_server was invalid; no_server will not be available")
}
expect_false(validate_configs(configs["no_pool"])$no_pool$pool)
expect_false(validate_configs(configs["pool_not_logical"])$pool_not_logical$pool)
expect_false(validate_configs(configs["pool_too_long"])$pool_too_long$pool)
})
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.