Description Usage Arguments Details Examples
Test that a driver passes all storr tests. This page is only of interest to people developing storr drivers; nothing here is required for using storr.
1 | test_driver(create)
|
create |
A function with one arguments that when run with
|
This will run through a suite of functions to test that a driver is likely to behave itself. As bugs are found they will be added to the test suite to guard against regressions.
The test suite is included in the package as
system.file("spec", package = "storr")
.
The procedure for each test block is:
Create a new driver by running dr <- create()
.
Run a number of tests.
Destroy the driver by running dr$destroy()
.
So before running this test suite, make sure this will not harm any precious data!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ## Testing the environment driver is nice and fast:
if (requireNamespace("testthat")) {
create_env <- function(dr = NULL, ...) {
driver_environment(dr$envir, ...)
}
test_driver(create_env)
}
# To test things like the rds driver, I would run:
## Not run:
if (requireNamespace("testthat")) {
create_rds <- function(dr = NULL) {
driver_rds(if (is.null(dr)) tempfile() else dr$path)
}
test_driver(create_rds)
}
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.