(self, store)
| 350 | assert sections == ["1"] |
| 351 | |
| 352 | def test_empty_for_unknown_distro(self, store): |
| 353 | mp = _make_manpage("tar", "1") |
| 354 | store.add_manpage(mp, _make_raw()) |
| 355 | |
| 356 | assert store.list_sections("debian", "12") == [] |
| 357 | |
| 358 | |
| 359 | class TestListManpages: |
nothing calls this directly
no test coverage detected