(monkeypatch)
| 19 | |
| 20 | |
| 21 | def test_api_key(monkeypatch): |
| 22 | monkeypatch.setenv("ANTHROPIC_API_KEY", "sk-ant-x") |
| 23 | assert _resolve_auth_env() == {"ANTHROPIC_API_KEY": "sk-ant-x"} |
| 24 | |
| 25 | |
| 26 | def test_oauth_token(monkeypatch): |
nothing calls this directly
no test coverage detected