(self, url: str)
| 528 | return None |
| 529 | |
| 530 | async def get(self, url: str): |
| 531 | return httpx.Response(200, json={"data": []}) |
| 532 | |
| 533 | with patch("api.admin_routes.httpx.AsyncClient", FakeAsyncClient): |
| 534 | response = _local_client(app).get("/admin/api/providers/local-status") |
no outgoing calls
no test coverage detected