pdot_common/pdot_common/testing.py
2023-07-02 10:28:48 +02:00

14 lines
283 B
Python

class MockResponse:
def __init__(self, text, status):
self._text = text
self.status = status
async def text(self):
return self._text
async def __aexit__(self, exc_type, exc, tb):
pass
async def __aenter__(self):
return self