(self, store)
| 289 | assert ("debian", "12") in pairs |
| 290 | |
| 291 | def test_no_duplicates(self, store): |
| 292 | mp1 = _make_manpage("ps", "1", distro="ubuntu", release="26.04") |
| 293 | mp2 = _make_manpage("ls", "1", distro="ubuntu", release="26.04") |
| 294 | store.add_manpage(mp1, _make_raw()) |
| 295 | store.add_manpage(mp2, _make_raw()) |
| 296 | |
| 297 | pairs = store.distros() |
| 298 | assert pairs.count(("ubuntu", "26.04")) == 1 |
| 299 | |
| 300 | |
| 301 | class TestGetManpageSource: |
nothing calls this directly
no test coverage detected