(self)
| 288 | |
| 289 | class TestFindEntriesForUrl: |
| 290 | def test_exact_match(self): |
| 291 | entry = _github_entry() |
| 292 | result = find_entries_for_url("https://github.com/org/repo", [entry]) |
| 293 | assert result == [entry] |
| 294 | |
| 295 | def test_wildcard_match(self): |
| 296 | entry = AuthConfigEntry( |
nothing calls this directly
no test coverage detected