Nothing
context("changedRecords Functionality")
test_that(
"Return an error when rcon is not a redcapConnection object",
{
local_reproducible_output(width = 200)
expect_error(
changedRecords(rcon = "not an rcon"),
"no applicable method for 'exportLogging'"
)
}
)
test_that(
"Returns records known to change in prior tests",
{
recs <- as.character(1:20)
x <- changedRecords(rcon, beginTime=as.POSIXct(Sys.time()-86400))
expect_true(all(recs %in% x$created))
expect_true(all(recs %in% x$updated))
expect_true(all(recs %in% x$deleted))
}
)
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.