()
| 151 | |
| 152 | |
| 153 | def test_lfm_finds_root_form_class(): |
| 154 | from graphify.extract import extract_lazarus_form |
| 155 | r = extract_lazarus_form(FIXTURES / "sample.lfm") |
| 156 | assert any("TSampleForm" in l for l in _labels(r)) |
| 157 | |
| 158 | |
| 159 | def test_lfm_finds_component_classes(): |
nothing calls this directly
no test coverage detected