(self)
| 372 | |
| 373 | class TestGitHubAuth: |
| 374 | def test_bearer_headers(self): |
| 375 | assert GitHubAuth().auth_headers("my-token", "bearer") == {"Authorization": "Bearer my-token"} |
| 376 | |
| 377 | def test_unsupported_scheme_raises(self): |
| 378 | with pytest.raises(ValueError, match="basic-pat"): |
nothing calls this directly
no test coverage detected