()
| 68 | |
| 69 | |
| 70 | def test_pascal_finds_inherits(): |
| 71 | from graphify.extract import extract_pascal |
| 72 | r = extract_pascal(FIXTURES / "sample.pas") |
| 73 | assert "inherits" in _relations(r) |
| 74 | |
| 75 | |
| 76 | def test_pascal_inherits_from_base(): |
nothing calls this directly
no test coverage detected