()
| 24 | |
| 25 | |
| 26 | def test_pascal_finds_unit(): |
| 27 | from graphify.extract import extract_pascal |
| 28 | r = extract_pascal(FIXTURES / "sample.pas") |
| 29 | assert any("SampleUnit" in l for l in _labels(r)) |
| 30 | |
| 31 | |
| 32 | def test_pascal_finds_classes(): |
nothing calls this directly
no test coverage detected