Nothing
describe("list_flatten", {
test_list <- generate_test_list()
it("returns a list without sublists", {
expect_true(any(sapply(test_list, inherits, "list")))
flat <- list_flatten(test_list)
expect_false(any(sapply(flat, inherits, "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.