(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 |
| 925 | |
| 926 | def test_trailing_slash(self): |
| 927 | assert extract_github_repo("https://github.com/org/repo/") == "org/repo" |
nothing calls this directly
no test coverage detected