(self, exit_code)
| 559 | |
| 560 | # method for tests |
| 561 | def finish(self, exit_code): |
| 562 | if self.is_finished(): |
| 563 | raise Exception('Cannot finish a script twice') |
| 564 | self.__finish(exit_code) |
| 565 | |
| 566 | # method for tests |
| 567 | def write_output(self, output): |
no test coverage detected