(monkeypatch)
| 24 | |
| 25 | |
| 26 | def test_oauth_token(monkeypatch): |
| 27 | monkeypatch.setenv("CLAUDE_CODE_OAUTH_TOKEN", "tok") |
| 28 | assert _resolve_auth_env() == {"CLAUDE_CODE_OAUTH_TOKEN": "tok"} |
| 29 | |
| 30 | |
| 31 | def test_precedence_api_key_over_oauth(monkeypatch): |
nothing calls this directly
no test coverage detected