1test_that("can format new_pillar_type()", {
2  expect_equal(
3    format(new_pillar_type(1:3)),
4    format_full_pillar_type(1:3)
5  )
6  expect_equal(
7    format(new_pillar_type(list(1, 2:3))),
8    format_full_pillar_type(list(1, 2:3))
9  )
10})
11