(self)
| 76 | assert _parse_json(text) == [{"name": "bar"}] |
| 77 | |
| 78 | def test_invalid_json(self): |
| 79 | with pytest.raises((json.JSONDecodeError, ValueError)): |
| 80 | _parse_json("not json") |
| 81 | |
| 82 | |
| 83 | class TestParseConceptsPlan: |
nothing calls this directly
no test coverage detected