(self)
| 915 | |
| 916 | class TestExtractGithubRepo: |
| 917 | def test_github_url(self): |
| 918 | assert extract_github_repo("https://github.com/psf/requests") == "psf/requests" |
| 919 | |
| 920 | def test_non_github_url(self): |
| 921 | assert extract_github_repo("https://foss.heptapod.net/pypy/pypy") is None |
nothing calls this directly
no test coverage detected