File: test-pillar.R

package info (click to toggle)
r-cran-dbplyr 2.3.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,376 kB
  • sloc: sh: 13; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 383 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
test_that("custom header", {
  expect_snapshot({
    "Number of rows is shown"
    x <- memdb_frame(a = 1:3) %>% filter(a > 0)
    setup <- pillar::tbl_format_setup(x)
    tbl_format_header(x, setup)[[1]]

    "Number of rows still can't be shown"
    x <- memdb_frame(a = 1:11) %>% filter(a > 0)
    setup <- pillar::tbl_format_setup(x)
    tbl_format_header(x, setup)[[1]]
  })
})