()
| 72 | |
| 73 | #[test] |
| 74 | fn missing_required_errors() { |
| 75 | let d = def("search"); |
| 76 | let err = parse_invocation(&d, &[]).unwrap_err(); |
| 77 | let msg = format!("{err}"); |
| 78 | assert!(msg.contains("missing required parameter"), "got: {msg}"); |
| 79 | } |
| 80 | |
| 81 | #[test] |
| 82 | fn args_escape_hatch() { |
nothing calls this directly
no test coverage detected