(self, url, **kwargs)
| 322 | return None |
| 323 | |
| 324 | async def get(self, url, **kwargs): |
| 325 | return _json_response(200, {'status': 'healthy'}, url) |
| 326 | |
| 327 | async def post(self, url, **kwargs): |
| 328 | calls.append({'url': url, **kwargs}) |
no test coverage detected