Nothing
context("correct contents are passed to giftwrap from wrap_* functions")
cenv <- new.env()
wrap_commands(c("echo", shout="echo"),
env = cenv)
test_that("giftwrap contents are correct", {
expect_true(any(grepl("giftwrap", capture.output(cenv$echo))))
expect_true(any(grepl("giftwrap", capture.output(cenv$shout))))
expect_true(any(grepl("echo", capture.output(cenv$echo))))
expect_true(any(grepl("echo", capture.output(cenv$shout))))
expect_true(any(grepl(", ...", capture.output(cenv$echo))))
expect_true(any(grepl(", ...", capture.output(cenv$shout))))
})
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.