(self, text, status_code, reason)
| 375 | |
| 376 | class FakeResponse(object): |
| 377 | def __init__(self, text, status_code, reason): |
| 378 | self.text = text |
| 379 | self.status_code = status_code |
| 380 | self.reason = reason |
| 381 | |
| 382 | def json(self): |
| 383 | return json.loads(self.text) |
nothing calls this directly
no outgoing calls
no test coverage detected