()
| 100 | |
| 101 | |
| 102 | def test_pascal_all_edges_extracted(): |
| 103 | from graphify.extract import extract_pascal |
| 104 | r = extract_pascal(FIXTURES / "sample.pas") |
| 105 | structural = {"contains", "method", "inherits", "imports"} |
| 106 | for e in r["edges"]: |
| 107 | if e["relation"] in structural: |
| 108 | assert e["confidence"] == "EXTRACTED", f"Expected EXTRACTED: {e}" |
| 109 | |
| 110 | |
| 111 | def test_pascal_no_dangling_edges(): |
nothing calls this directly
no test coverage detected