()
| 369 | } |
| 370 | #[test] |
| 371 | fn print_automatic_with_header() { |
| 372 | let output = PrintBatchesTest::new() |
| 373 | .with_format(PrintFormat::Automatic) |
| 374 | .with_batches(split_batch(&three_column_batch())) |
| 375 | .with_header(WithHeader::Yes) |
| 376 | .run(); |
| 377 | assert_snapshot!(output, @r" |
| 378 | a,b,c |
| 379 | 1,4,7 |
| 380 | 2,5,8 |
| 381 | 3,6,9 |
| 382 | "); |
| 383 | } |
| 384 | |
| 385 | #[test] |
| 386 | fn print_maxrows_unlimited() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…