(self, resource="https://example.com/", client_id=None, timeout=5)
| 47 | |
| 48 | class TestGetAzureResponse(unittest.TestCase): |
| 49 | def _call(self, resource="https://example.com/", client_id=None, timeout=5): |
| 50 | return _get_azure_response(resource, client_id=client_id, timeout=timeout) |
| 51 | |
| 52 | def test_success_without_client_id(self): |
| 53 | body = json.dumps({"access_token": "tok", "expires_in": "3600"}) |
no test coverage detected