test_that("LHS must be a list of symbols wrapped in `c()`", {
expect_error(
foo %<-% list(1),
"must be a call to `c()`",
fixed = TRUE
)
expect_error(
c(foo()) %<-% list(1),
"Element 1 of the left-hand side .* must be a symbol"
)
})
test_that("can assign lists and vectors", {
c(foo, bar) %<-% list(a = 1, 2)
expect_equal(list(foo, bar), list(1, 2))
c(foo, bar) %<-% c(a = 1, 2)
expect_equal(list(foo, bar), list(1, 2))
})
test_that("RHS and LHS must have the same length", {
expect_error(
c(foo) %<-% list(),
"must be the same length"
)
expect_error(
c(foo, bar) %<-% as.list(1:10),
"must be the same length"
)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.