(self, text, status_code, reason)
| 19 | |
| 20 | class FakeResponse(object): |
| 21 | def __init__(self, text, status_code, reason): |
| 22 | self.text = text |
| 23 | self.status_code = status_code |
| 24 | self.reason = reason |
| 25 | |
| 26 | def json(self): |
| 27 | return json.loads(self.text) |
nothing calls this directly
no outgoing calls
no test coverage detected