(self)
| 318 | self.assertEqual(c, "The answer is 42.") |
| 319 | |
| 320 | def test_split_reasoning_no_marker(self): |
| 321 | r, c = split_reasoning("just text", "<think>", "</think>") |
| 322 | self.assertEqual(r, "") |
| 323 | self.assertEqual(c, "just text") |
| 324 | |
| 325 | def test_parse_tool_calls_with_shim(self): |
| 326 | tm = types.SimpleNamespace( |
nothing calls this directly
no test coverage detected