(self)
| 80 | return response |
| 81 | |
| 82 | def put(self): |
| 83 | response = HttpRequest.request(url=self.url, headers=self.headers, body=self.data, method="PUT") |
| 84 | return response |
| 85 | |
| 86 | def head(self): |
| 87 | response = HttpRequest.request(url=self.url, headers=self.headers, body=self.data, method="HEAD") |
no test coverage detected