()
| 208 | |
| 209 | #[test] |
| 210 | fn unknown_tool_name_errors() { |
| 211 | // canonical_tool_name only normalises — unknown names are caught by |
| 212 | // the lookup in run(). Simulate the lookup here. |
| 213 | let canonical = canonical_tool_name("totally-fake-tool"); |
| 214 | let found = defs().into_iter().any(|d| d.name == canonical); |
| 215 | assert!(!found); |
| 216 | } |
| 217 | |
| 218 | #[test] |
| 219 | fn array_value_collected_via_repetition() { |
nothing calls this directly
no test coverage detected