(self)
| 424 | assert AzureDevOpsAuth().auth_headers("tok", "bearer") == {"Authorization": "Bearer tok"} |
| 425 | |
| 426 | def test_azure_cli_headers(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"} |
nothing calls this directly
no test coverage detected