(extra: &[&'static str])
| 396 | } |
| 397 | |
| 398 | fn parse_cli(extra: &[&'static str]) -> Cli { |
| 399 | let mut args = base_args(); |
| 400 | args.extend_from_slice(extra); |
| 401 | Cli::try_parse_from(args).expect("CLI should parse") |
| 402 | } |
| 403 | |
| 404 | #[test] |
| 405 | fn into_config_defaults_to_single_batches_and_blobs() { |