Nothing
test_that("list is converted to comma separated string", {
expect_equal(.implode_to_string(list("aa", "bb")), "aa,bb")
})
test_that("character vector is converted to comma separated string", {
expect_equal(.implode_to_string(c("aa", "bb")), "aa,bb")
})
test_that("character vectors of length one are not modified", {
expect_equal(.implode_to_string("aa"), "aa")
})
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.