()
| 24 | |
| 25 | #[test] |
| 26 | fn parses_positional_required_string() { |
| 27 | let d = def("search"); |
| 28 | let parsed = parse_invocation(&d, &["foo".to_string()]).unwrap(); |
| 29 | assert_eq!(parsed.tool_args, json!({ "query": "foo" })); |
| 30 | } |
| 31 | |
| 32 | #[test] |
| 33 | fn coerces_integer_flag() { |
nothing calls this directly
no test coverage detected