(self)
| 101 | assert isinstance(parsed, list) |
| 102 | |
| 103 | def test_fenced_dict(self): |
| 104 | text = '```json\n{"create": [], "update": [], "related": []}\n```' |
| 105 | parsed = _parse_json(text) |
| 106 | assert isinstance(parsed, dict) |
| 107 | assert parsed["create"] == [] |
| 108 | |
| 109 | |
| 110 | class TestParseEntitiesPlan: |
nothing calls this directly
no test coverage detected