Nothing
test_that("install_acro installs 'acro' in the specified environment", {
# Specify a temporary environment for testing
testthat::skip_on_cran()
test_envname <- "test-acro-env"
# Run the install_acro function
install_acro(envname = test_envname)
# Check if 'acro' is installed in the test environment
is_installed <- reticulate::py_module_available("acro")
expect_true(is_installed)
# remove the temporary environment
reticulate::virtualenv_remove(test_envname, confirm = FALSE)
})
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.