()
| 356 | |
| 357 | #[test] |
| 358 | fn print_automatic_no_header() { |
| 359 | let output = PrintBatchesTest::new() |
| 360 | .with_format(PrintFormat::Automatic) |
| 361 | .with_batches(split_batch(&three_column_batch())) |
| 362 | .with_header(WithHeader::No) |
| 363 | .run(); |
| 364 | assert_snapshot!(output, @r" |
| 365 | 1,4,7 |
| 366 | 2,5,8 |
| 367 | 3,6,9 |
| 368 | "); |
| 369 | } |
| 370 | #[test] |
| 371 | fn print_automatic_with_header() { |
| 372 | let output = PrintBatchesTest::new() |
nothing calls this directly
no test coverage detected
searching dependent graphs…