()
| 23 | assert classify_file(Path("README.md")) == FileType.DOCUMENT |
| 24 | |
| 25 | def test_classify_pdf(): |
| 26 | assert classify_file(Path("paper.pdf")) == FileType.PAPER |
| 27 | |
| 28 | def test_classify_pdf_in_xcassets_skipped(): |
| 29 | # PDFs inside Xcode asset catalogs are vector icons, not papers |
nothing calls this directly
no test coverage detected