(response)
| 16 | |
| 17 | |
| 18 | def _assert_response_success(response): |
| 19 | assert "status" in response, f"Invalid response {response}" |
| 20 | assert "code" in response["status"], f"Invalid response {response}" |
| 21 | assert response["status"]["code"] == 10000, f"Invalid response {response}" |
| 22 | |
| 23 | |
| 24 | def _request(method, url, payload={}, headers={}): |
no outgoing calls
no test coverage detected