(self)
| 13 | # pylint: disable=attribute-defined-outside-init |
| 14 | class _OutputSpy(list): |
| 15 | def begin(self): |
| 16 | self.__out = io.StringIO() |
| 17 | self.__old_stdout = sys.stdout |
| 18 | sys.stdout = self.__out |
| 19 | |
| 20 | def flush(self): |
| 21 | lines = self.__out.getvalue().splitlines() |
no outgoing calls
no test coverage detected