test_that("dims.nlist", {
expect_identical(pdims(nlist()), list())
expect_identical(
pdims(nlist(x = 1:3, y = matrix(1, c(2, 3)))),
list(x = 3L, y = 2:1)
)
})
test_that("pdims.nlists", {
expect_identical(pdims(nlists()), list())
expect_identical(pdims(nlists(nlist())), list())
expect_identical(
pdims(nlists(
nlist(x = 1:3, y = matrix(1, c(2, 3))),
nlist(x = 1:3, y = matrix(1, c(2, 3)))
)),
list(x = 3L, y = 2:1)
)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.