(self)
| 48 | self.assert_writes([]) |
| 49 | |
| 50 | def test_simple_str(self): |
| 51 | self.log.write("hello world\n") |
| 52 | |
| 53 | self.assert_writes([b"hello world\n"]) |
| 54 | |
| 55 | def test_buffered_str(self): |
| 56 | self.log.write("h") |
nothing calls this directly
no test coverage detected