Nothing
context("temp_* functions write readable files")
csv <- temp_csv(mtcars)
rds <- temp_rds(mtcars)
txt <- temp_lines(mtcars)
test_that("files written with temp_ functions are loaded", {
expect_true(any(class(readr::read_csv(csv)) == "data.frame"))
expect_true(any(class(readr::read_rds(rds)) == "data.frame"))
expect_true(!is.null(readr::read_lines(txt)))
})
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.