(self)
| 561 | self.entry_point = awscli.clidriver.AWSCLIEntryPoint(self.driver) |
| 562 | |
| 563 | def tearDown(self): |
| 564 | self.environ_patch.stop() |
| 565 | if self.send_is_patched: |
| 566 | self.send_patch.stop() |
| 567 | self.send_is_patched = False |
| 568 | |
| 569 | def patch_send(self, status_code=200, headers={}, content=b''): |
| 570 | if self.send_is_patched: |