(self)
| 310 | assert _extract_json_object('Here you go:\n{"a": 1}\nDone.') == {"a": 1} |
| 311 | |
| 312 | def test_garbage_raises(self) -> None: |
| 313 | with pytest.raises(ValueError): |
| 314 | _extract_json_object("not json") |
| 315 | |
| 316 | |
| 317 | class TestGetChatModel: |
nothing calls this directly
no test coverage detected