(self, url, data, **kwargs)
| 126 | @add_json_content_type_to_headers |
| 127 | @add_basic_auth_creds_to_kwargs |
| 128 | def post(self, url, data, **kwargs): |
| 129 | response = requests.post(self.root + url, json.dumps(data), **kwargs) |
| 130 | response = self._response_hook(response=response) |
| 131 | return response |
| 132 | |
| 133 | @add_ssl_verify_to_kwargs |
| 134 | @add_auth_token_to_headers |
no test coverage detected