()
| 289 | # ── Rust ────────────────────────────────────────────────────────────────────── |
| 290 | |
| 291 | def test_rust_finds_struct(): |
| 292 | r = extract_rust(FIXTURES / "sample.rs") |
| 293 | assert "error" not in r |
| 294 | assert "Graph" in _labels(r) |
| 295 | |
| 296 | def test_rust_finds_impl_methods(): |
| 297 | r = extract_rust(FIXTURES / "sample.rs") |
nothing calls this directly
no test coverage detected