Get the captured writes as a single string.
(self)
| 1487 | self.capture_location = capture_location |
| 1488 | |
| 1489 | def contents(self): |
| 1490 | """Get the captured writes as a single string.""" |
| 1491 | with open(self.capture_location) as tmp_file: |
| 1492 | output_data = "".join(tmp_file.readlines()) |
| 1493 | return output_data |
| 1494 | |
| 1495 | |
| 1496 | class FakeEagerSession(object): |
no test coverage detected