()
| 257 | |
| 258 | #[test] |
| 259 | fn print_csv_no_header() { |
| 260 | let output = PrintBatchesTest::new() |
| 261 | .with_format(PrintFormat::Csv) |
| 262 | .with_batches(split_batch(&three_column_batch())) |
| 263 | .with_header(WithHeader::No) |
| 264 | .run(); |
| 265 | assert_snapshot!(output, @r" |
| 266 | 1,4,7 |
| 267 | 2,5,8 |
| 268 | 3,6,9 |
| 269 | "); |
| 270 | } |
| 271 | |
| 272 | #[test] |
| 273 | fn print_csv_with_header() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…