()
| 201 | |
| 202 | #[test] |
| 203 | fn help_flag_short_circuits() { |
| 204 | let d = def("search"); |
| 205 | let parsed = parse_invocation(&d, &["--help".to_string()]).unwrap(); |
| 206 | assert!(parsed.show_help); |
| 207 | } |
| 208 | |
| 209 | #[test] |
| 210 | fn unknown_tool_name_errors() { |
nothing calls this directly
no test coverage detected