(self, url, data, **kwargs)
| 134 | @add_auth_token_to_headers |
| 135 | @add_basic_auth_creds_to_kwargs |
| 136 | def post_raw(self, url, data, **kwargs): |
| 137 | response = requests.post(self.root + url, data, **kwargs) |
| 138 | response = self._response_hook(response=response) |
| 139 | return response |
| 140 | |
| 141 | @add_ssl_verify_to_kwargs |
| 142 | @add_auth_token_to_headers |
no test coverage detected