()
| 164 | class Response: |
| 165 | @staticmethod |
| 166 | def json(): |
| 167 | response = """{"message": "API rate limit exceeded for 62.96.232.178. (But here's the |
| 168 | good news: Authenticated requests get a higher rate limit. Check out the |
| 169 | documentation for more details.)", "documentation_url": |
| 170 | "https://developer.github.com/v3/#rate-limiting"}""" |
| 171 | return json.loads(response.replace("\n", "")) |
| 172 | |
| 173 | def fake_request(endpoint): # pylint: disable=unused-argument |
| 174 | return Response() |
no outgoing calls
no test coverage detected