Nothing
test_that("softValidation is passed correctly", {
skip_if_not_installed("duckdb")
con <- DBI::dbConnect(duckdb::duckdb(), eunomiaDir())
# create overlapping observation periods
op <- dplyr::tbl(con, "observation_period") |> dplyr::collect()
DBI::dbAppendTable(con, "observation_period", op)
expect_error(cdmFromCon(con, "main", "main", .softValidation = F),
"overlap")
# soft validation ignores this
expect_no_error(cdmFromCon(con, "main", "main", .softValidation = T))
DBI::dbDisconnect(con, shutdown = T)
})
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.