(data, headers, reason="Ok")
| 66 | |
| 67 | |
| 68 | def fake_response(data, headers, reason="Ok"): |
| 69 | response = httplib2.Response(headers) |
| 70 | response.reason = reason |
| 71 | return response, data |
| 72 | |
| 73 | |
| 74 | class Error(unittest.TestCase): |
no outgoing calls
no test coverage detected
searching dependent graphs…