(self)
| 96 | assert parsed["related"] == ["baz"] |
| 97 | |
| 98 | def test_fallback_list_format(self): |
| 99 | text = json.dumps([{"name": "foo", "title": "Foo"}]) |
| 100 | parsed = _parse_json(text) |
| 101 | assert isinstance(parsed, list) |
| 102 | |
| 103 | def test_fenced_dict(self): |
| 104 | text = '```json\n{"create": [], "update": [], "related": []}\n```' |
nothing calls this directly
no test coverage detected