()
| 12 | assert classify_file(Path("bar.ts")) == FileType.CODE |
| 13 | |
| 14 | def test_classify_powershell_module(): |
| 15 | # #1315: .psm1 modules were never indexed (CODE_EXTENSIONS gap). |
| 16 | assert classify_file(Path("Utils.psm1")) == FileType.CODE |
| 17 | |
| 18 | def test_classify_powershell_manifest(): |
| 19 | # #1331: .psd1 manifests must be classified as CODE so the manifest extractor runs. |
nothing calls this directly
no test coverage detected