(self)
| 575 | self.assertIsNone(manpage_url("custom/distro/1/foo.1.gz")) |
| 576 | |
| 577 | def test_section_8(self): |
| 578 | url = manpage_url("ubuntu/26.04/8/iptables.8.gz") |
| 579 | self.assertRegex( |
| 580 | url, |
| 581 | r"https://manpages\.ubuntu\.com/manpages/\w+/en/man8/iptables\.8\.html", |
| 582 | ) |
| 583 | |
| 584 | def test_posix_section(self): |
| 585 | url = manpage_url("ubuntu/26.04/1/crontab.1posix.gz") |
nothing calls this directly
no test coverage detected