()
| 300 | |
| 301 | #[test] |
| 302 | fn print_tsv_with_header() { |
| 303 | let output = PrintBatchesTest::new() |
| 304 | .with_format(PrintFormat::Tsv) |
| 305 | .with_batches(split_batch(&three_column_batch())) |
| 306 | .with_header(WithHeader::Yes) |
| 307 | .run(); |
| 308 | assert_snapshot!(output, @r" |
| 309 | a b c |
| 310 | 1 4 7 |
| 311 | 2 5 8 |
| 312 | 3 6 9 |
| 313 | "); |
| 314 | } |
| 315 | |
| 316 | #[test] |
| 317 | fn print_table() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…