(self, output_spy)
| 8 | self.OutputBuffer = ssh_audit.OutputBuffer |
| 9 | |
| 10 | def test_outputbuffer_no_lines(self, output_spy): |
| 11 | output_spy.begin() |
| 12 | obuf = self.OutputBuffer() |
| 13 | obuf.write() |
| 14 | assert output_spy.flush() == [''] |
| 15 | output_spy.begin() |
| 16 | |
| 17 | def test_outputbuffer_defaults(self): |
| 18 | obuf = self.OutputBuffer() |