| 321 | |
| 322 | |
| 323 | class ResponseWrapper: |
| 324 | def __init__(self, status: int, json_data: dict): |
| 325 | self.status_code = status |
| 326 | self._json_data = json_data |
| 327 | |
| 328 | def json(self): |
| 329 | return self._json_data |
| 330 | |
| 331 | |
| 332 | def check_order(lst, key): |
no outgoing calls
no test coverage detected