()
| 205 | |
| 206 | |
| 207 | def test_lpk_finds_package_name(): |
| 208 | from graphify.extract import extract_lazarus_package |
| 209 | r = extract_lazarus_package(FIXTURES / "sample.lpk") |
| 210 | assert any("SamplePackage" in l for l in _labels(r)) |
| 211 | |
| 212 | |
| 213 | def test_lpk_finds_required_packages(): |
nothing calls this directly
no test coverage detected