()
| 304 | assert any("build_graph" in l for l in _labels(r)) |
| 305 | |
| 306 | def test_rust_emits_calls(): |
| 307 | r = extract_rust(FIXTURES / "sample.rs") |
| 308 | calls = _call_pairs(r) |
| 309 | assert any("build_graph" in src for src, _ in calls) |
| 310 | |
| 311 | def test_rust_calls_are_extracted(): |
| 312 | r = extract_rust(FIXTURES / "sample.rs") |
nothing calls this directly
no test coverage detected