()
| 610 | |
| 611 | |
| 612 | def test_parse_tool_call_null_tool(): |
| 613 | raw = '{"tool": null, "answer": "42"}' |
| 614 | result = _parse_tool_call(raw) |
| 615 | assert result["tool"] is None |
| 616 | assert result["answer"] == "42" |
| 617 | |
| 618 | |
| 619 | def test_parse_tool_call_embedded_json(): |
nothing calls this directly
no test coverage detected