()
| 2501 | } |
| 2502 | |
| 2503 | fn no_command_action_from_args() -> Option<NoCommandAction> { |
| 2504 | let args: Vec<String> = env::args().skip(1).collect(); |
| 2505 | no_command_action_from_args_slice(&args) |
| 2506 | } |
| 2507 | |
| 2508 | fn no_command_action_from_args_slice(args: &[String]) -> Option<NoCommandAction> { |
| 2509 | if args |
no test coverage detected