()
| 300 | assert any("add_edge" in l for l in labels) |
| 301 | |
| 302 | def test_rust_finds_function(): |
| 303 | r = extract_rust(FIXTURES / "sample.rs") |
| 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") |
nothing calls this directly
no test coverage detected