(self)
| 200 | |
| 201 | class TestParseDistroRelease: |
| 202 | def test_distro_path(self): |
| 203 | assert parse_distro_release("ubuntu/26.04/1/ps.1.gz") == ("ubuntu", "26.04") |
| 204 | |
| 205 | def test_different_distro(self): |
| 206 | assert parse_distro_release("debian/12/8/foo.8.gz") == ("debian", "12") |
nothing calls this directly
no test coverage detected