(self)
| 69 | |
| 70 | class TestParseJson: |
| 71 | def test_plain_json(self): |
| 72 | assert _parse_json('[{"name": "foo"}]') == [{"name": "foo"}] |
| 73 | |
| 74 | def test_fenced_json(self): |
| 75 | text = '```json\n[{"name": "bar"}]\n```' |
nothing calls this directly
no test coverage detected