()
| 145 | # ── Lazarus Form (.lfm) ─────────────────────────────────────────────────────── |
| 146 | |
| 147 | def test_lfm_no_error(): |
| 148 | from graphify.extract import extract_lazarus_form |
| 149 | r = extract_lazarus_form(FIXTURES / "sample.lfm") |
| 150 | assert "error" not in r |
| 151 | |
| 152 | |
| 153 | def test_lfm_finds_root_form_class(): |
nothing calls this directly
no test coverage detected