(self)
| 304 | assert _extract_json_object('{"a": 1}') == {"a": 1} |
| 305 | |
| 306 | def test_fenced_json(self) -> None: |
| 307 | assert _extract_json_object('```json\n{"a": 1}\n```') == {"a": 1} |
| 308 | |
| 309 | def test_prose_wrapped_json(self) -> None: |
| 310 | assert _extract_json_object('Here you go:\n{"a": 1}\nDone.') == {"a": 1} |
nothing calls this directly
no test coverage detected