(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}) |
| 329 | return _json_response( |
| 330 | 200, |
| 331 | [{'title': 'PASA Paper', 'link': '2401.00001', 'snippet': 'abstract'}], |
| 332 | url, |
| 333 | ) |
| 334 | |
| 335 | monkeypatch.setattr(paper_search_module.httpx, 'AsyncClient', PasaAsyncClient) |
| 336 |
no test coverage detected