()
| 38 | assert classify_file(Path("archive.zip")) is None |
| 39 | |
| 40 | def test_classify_image(): |
| 41 | assert classify_file(Path("screenshot.png")) == FileType.IMAGE |
| 42 | assert classify_file(Path("design.jpg")) == FileType.IMAGE |
| 43 | assert classify_file(Path("diagram.webp")) == FileType.IMAGE |
| 44 | |
| 45 | def test_count_words_sample_md(): |
| 46 | words = count_words(FIXTURES / "sample.md") |
nothing calls this directly
no test coverage detected