(self)
| 42 | self.assertIs(self.log.write_through, False) |
| 43 | |
| 44 | def test_empty_str(self): |
| 45 | self.log.write("") |
| 46 | self.log.flush() |
| 47 | |
| 48 | self.assert_writes([]) |
| 49 | |
| 50 | def test_simple_str(self): |
| 51 | self.log.write("hello world\n") |
nothing calls this directly
no test coverage detected