| 58 | |
| 59 | |
| 60 | class FakeResponse: |
| 61 | def __init__(self, status_code: int, text: str = "{}"): |
| 62 | self.status_code = status_code |
| 63 | self.text = text |
| 64 | |
| 65 | @property |
| 66 | def is_success(self) -> bool: |
| 67 | return 200 <= self.status_code < 300 |
| 68 | |
| 69 | |
| 70 | def _build_fake_async_client(handler): |