| 271 | self.debug_record.append(message % args) |
| 272 | |
| 273 | class MockResponse(dict): |
| 274 | def __init__(self, items): |
| 275 | super(MockResponse, self).__init__() |
| 276 | self.status = items["status"] |
| 277 | for key, value in items.items(): |
| 278 | self[key] = value |
| 279 | |
| 280 | old_logging = googleapiclient.model.LOGGER |
| 281 | googleapiclient.model.LOGGER = MockLogging() |
no outgoing calls
searching dependent graphs…