Nothing
test_that("is_transect_list works", {
test_raw <- suppressMessages(download_transect(4492))
test_transect_list <- list(test_raw, test_raw)
bad_list <- list(faithful, faithful)
expect_false(is_transect_list(random_unassigned_variable_5000))
expect_true(is_transect_list(test_transect_list))
expect_true(is_transect_list(list(test_raw)))
expect_false(is_transect_list(test_raw))
expect_false(is_transect_list(faithful))
expect_false(is_transect_list(data.frame()))
expect_false(is_transect_list(bad_list))
internal_list <- list(test_transect, test_transect)
expect_true(is_transect_list(test_transect_list))
})
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.