(extra: &[&'static str])
| 424 | } |
| 425 | |
| 426 | fn parse_cli(extra: &[&'static str]) -> Cli { |
| 427 | let mut args = base_args(); |
| 428 | args.extend_from_slice(extra); |
| 429 | Cli::try_parse_from(args).expect("CLI should parse") |
| 430 | } |
| 431 | |
| 432 | #[test] |
| 433 | fn into_config_defaults_to_single_batches_and_blobs() { |