()
| 6 | FIXTURES = Path(__file__).parent / "fixtures" |
| 7 | |
| 8 | def test_classify_python(): |
| 9 | assert classify_file(Path("foo.py")) == FileType.CODE |
| 10 | |
| 11 | def test_classify_typescript(): |
| 12 | assert classify_file(Path("bar.ts")) == FileType.CODE |
nothing calls this directly
no test coverage detected