()
| 362 | |
| 363 | #[test] |
| 364 | fn rotate_ca_finalize_parses() { |
| 365 | let result = parse_subcommand(&args(&["rotate-ca", "--finalize", "--remove", "abcdef"])); |
| 366 | assert!(matches!( |
| 367 | result, |
| 368 | Ok(Some(Subcommand::RotateCaFinalize { .. })) |
| 369 | )); |
| 370 | } |
| 371 | |
| 372 | #[test] |
| 373 | fn join_token_parses() { |
nothing calls this directly
no test coverage detected