(self, message, *args)
| 268 | self.info_record.append(message % args) |
| 269 | |
| 270 | def debug(self, message, *args): |
| 271 | self.debug_record.append(message % args) |
| 272 | |
| 273 | class MockResponse(dict): |
| 274 | def __init__(self, items): |
no outgoing calls
no test coverage detected