(tmp_path: Path)
| 63 | |
| 64 | |
| 65 | def test_missing_file(tmp_path: Path): |
| 66 | deck_dir = tmp_path / "deck" |
| 67 | deck_dir.mkdir() |
| 68 | result = validate_deck(deck_dir) |
| 69 | assert any("not found" in e for e in result.errors) |
| 70 | |
| 71 | |
| 72 | def test_too_few_slides(tmp_path: Path): |
nothing calls this directly
no test coverage detected