(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 |
| 922 | |
| 923 | def test_github_io_url(self): |
| 924 | assert extract_github_repo("https://user.github.io/proj") is None |
nothing calls this directly
no test coverage detected