()
| 286 | |
| 287 | #[test] |
| 288 | fn print_tsv_no_header() { |
| 289 | let output = PrintBatchesTest::new() |
| 290 | .with_format(PrintFormat::Tsv) |
| 291 | .with_batches(split_batch(&three_column_batch())) |
| 292 | .with_header(WithHeader::No) |
| 293 | .run(); |
| 294 | assert_snapshot!(output, @r" |
| 295 | 1 4 7 |
| 296 | 2 5 8 |
| 297 | 3 6 9 |
| 298 | ") |
| 299 | } |
| 300 | |
| 301 | #[test] |
| 302 | fn print_tsv_with_header() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…