Nothing
test_that('`manifest_create()` writes a valid manifest file', {
path <- manifest_create(project_name = 'demo', project_version = '0.1.0')
expect_true(file.exists(path))
manifest <- tomledit::from_toml(tomledit::read_toml(path))
expect_equal(manifest$project$name, 'demo')
expect_equal(manifest$project$version, '0.1.0')
expect_true('dependencies' %in% names(manifest))
})
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.