(self)
| 395 | validate_source_path("tar.1.gz") |
| 396 | |
| 397 | def test_missing_distro_rejected(self): |
| 398 | with pytest.raises(errors.InvalidSourcePath): |
| 399 | validate_source_path("26.04/1/tar.1.gz") |
| 400 | |
| 401 | def test_add_manpage_rejects_bare_source(self, store): |
| 402 | mp = ParsedManpage( |
nothing calls this directly
no test coverage detected