()
| 211 | |
| 212 | |
| 213 | def test_lpk_finds_required_packages(): |
| 214 | from graphify.extract import extract_lazarus_package |
| 215 | r = extract_lazarus_package(FIXTURES / "sample.lpk") |
| 216 | labels = _labels(r) |
| 217 | assert any("FCL" in l for l in labels) |
| 218 | assert any("LCL" in l for l in labels) |
| 219 | |
| 220 | |
| 221 | def test_lpk_imports_edges_have_import_context(): |
nothing calls this directly
no test coverage detected