Nothing
test_that("setup_cluster works", {
expect_null(.adaptr_cluster_env$cl)
expect_null(.adaptr_cluster_env$cores)
expect_null(setup_cluster()) # No default cluster
# Setup and check cluster including export
x <- y <- c(1, 3, 4, 7, 9)
cl <- setup_cluster(2, export = "x")
expect_equal(class(cl), c("SOCKcluster", "cluster"))
expect_equal(length(cl), 2)
# Check that existing cluster is returned
expect_identical(setup_cluster(), cl)
# Check that exporting works
expect_equal(parallel::clusterEvalQ(cl, x)[[1]], y)
# Check that 1 removes cluster but stores value
expect_null(setup_cluster(1))
expect_null(.adaptr_cluster_env$cl)
expect_identical(.adaptr_cluster_env$cores, 1)
# Check that NULL removes cluster and value
expect_null(setup_cluster(NULL))
expect_null(.adaptr_cluster_env$cl)
expect_null(.adaptr_cluster_env$cores)
})
test_that("setup_cluster errors on invalid values", {
expect_error(setup_cluster(0.33))
})
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.