(self)
| 97 | subprocess.check_call(cmd) |
| 98 | |
| 99 | def wrap_honeyproxy(self): |
| 100 | with self.wrap_proxy(): |
| 101 | popen = subprocess.Popen("honeyproxy.sh") |
| 102 | try: |
| 103 | popen.wait() |
| 104 | except KeyboardInterrupt: |
| 105 | popen.terminate() |
| 106 | |
| 107 | @contextlib.contextmanager |
| 108 | def wrap_proxy(self): |
nothing calls this directly
no test coverage detected