(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" |
| 928 | |
| 929 | def test_deep_path(self): |
| 930 | assert extract_github_repo("https://github.com/org/repo/tree/main") is None |
nothing calls this directly
no test coverage detected