Nothing
test_that("Error",{
expect_error(import_tibble(cars),
"tibble must be a tibble.")
})
test_that("import_tibble works the same as import_spss",{
import_spss_input <- import_spss(test_path("helper_spss.sav"))
haven_input <- haven::read_sav(test_path("helper_spss.sav"))
out <- import_tibble(haven_input)
expect_equal(out, import_spss_input)
})
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.