(self, store, db_path)
| 43 | |
| 44 | class TestCheck: |
| 45 | def test_clean_db(self, store, db_path): |
| 46 | store.add_manpage(_make_manpage("tar", "1"), _make_raw()) |
| 47 | assert db_check(db_path) == [] |
| 48 | |
| 49 | def test_malformed_source(self, store, db_path): |
| 50 | """Directly insert a row with a bare source to test the checker.""" |
nothing calls this directly
no test coverage detected