(self, monkeypatch, token_env="GH_TOKEN")
| 3284 | return ExtensionCatalog(project_dir) |
| 3285 | |
| 3286 | def _inject_github_config(self, monkeypatch, token_env="GH_TOKEN"): |
| 3287 | from tests.auth_helpers import inject_github_config |
| 3288 | inject_github_config(monkeypatch, token_env) |
| 3289 | |
| 3290 | def test_make_request_no_token_no_auth_header(self, temp_dir, monkeypatch): |
| 3291 | """Without a token, requests carry no Authorization header.""" |
no test coverage detected