()
| 245 | # ── Delphi Form (.dfm) ─────────────────────────────────────────────────────── |
| 246 | |
| 247 | def test_dfm_no_error(): |
| 248 | from graphify.extract import extract_delphi_form |
| 249 | r = extract_delphi_form(FIXTURES / "sample.dfm") |
| 250 | assert "error" not in r |
| 251 | |
| 252 | |
| 253 | def test_dfm_finds_root_form_class(): |
nothing calls this directly
no test coverage detected