()
| 1678 | |
| 1679 | |
| 1680 | def test_powershell_finds_class_and_method(): |
| 1681 | r = extract_powershell(FIXTURES / "sample.ps1") |
| 1682 | labels = [n["label"] for n in r["nodes"]] |
| 1683 | assert "DataProcessor" in labels |
| 1684 | assert any("Transform" in l for l in labels) |
| 1685 | |
| 1686 | |
| 1687 | def test_powershell_class_base_type_emits_inherits_edge(): |
nothing calls this directly
no test coverage detected