()
| 118 | assert any("build_graph" in src for src, _ in calls) |
| 119 | |
| 120 | def test_rust_calls_are_inferred(): |
| 121 | r = extract_rust(FIXTURES / "sample.rs") |
| 122 | for e in r["edges"]: |
| 123 | if e["relation"] == "calls": |
| 124 | assert e["confidence"] == "INFERRED" |
| 125 | |
| 126 | def test_rust_no_dangling_edges(): |
| 127 | r = extract_rust(FIXTURES / "sample.rs") |
nothing calls this directly
no test coverage detected