(self)
| 76 | return response |
| 77 | |
| 78 | def post(self): |
| 79 | response = HttpRequest.request(url=self.url, headers=self.headers, body=self.data, method="POST") |
| 80 | return response |
| 81 | |
| 82 | def put(self): |
| 83 | response = HttpRequest.request(url=self.url, headers=self.headers, body=self.data, method="PUT") |
no test coverage detected