(self)
| 427 | assert AzureDevOpsAuth().auth_headers("tok", "azure-cli") == {"Authorization": "Bearer tok"} |
| 428 | |
| 429 | def test_azure_ad_headers(self): |
| 430 | assert AzureDevOpsAuth().auth_headers("tok", "azure-ad") == {"Authorization": "Bearer tok"} |
| 431 | |
| 432 | def test_unsupported_scheme_raises(self): |
| 433 | with pytest.raises(ValueError): |
nothing calls this directly
no test coverage detected