()
| 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. |
| 20 | assert classify_file(Path("MyModule.psd1")) == FileType.CODE |
| 21 | |
| 22 | def test_classify_markdown(): |
| 23 | assert classify_file(Path("README.md")) == FileType.DOCUMENT |
nothing calls this directly
no test coverage detected