Nothing
test_that("init.list.f", {
new.list <- init.list.f(
list(1,2,3), list(A=3, B=4, C=5)
)
expect_equal(
length(new.list),
6
)
})
test_that("squash_map ", {
.f <- function(...){
enquos(...)
}
x <- .f(A, B, C)
squashed <- squash_map(x)
all(map(squashed, class) == "name")
expect_equal(
length(squashed),
3
)
expect_true(
all(map(squashed, class) == "name")
)
})
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.