()
| 596 | |
| 597 | |
| 598 | def test_parse_tool_call_plain_json(): |
| 599 | raw = '{"tool": "sites", "args": {}}' |
| 600 | result = _parse_tool_call(raw) |
| 601 | assert result["tool"] == "sites" |
| 602 | assert result["args"] == {} |
| 603 | |
| 604 | |
| 605 | def test_parse_tool_call_with_markdown_fence(): |
nothing calls this directly
no test coverage detected