()
| 54 | |
| 55 | |
| 56 | def test_pascal_finds_imports(): |
| 57 | from graphify.extract import extract_pascal |
| 58 | r = extract_pascal(FIXTURES / "sample.pas") |
| 59 | assert "imports" in _relations(r) |
| 60 | |
| 61 | |
| 62 | def test_pascal_import_edges_have_import_context(): |
nothing calls this directly
no test coverage detected