(self)
| 48 | self.assertEqual(self.history.history, [line2, line1]) |
| 49 | |
| 50 | def test_store_reset(self): |
| 51 | self.history.prefix = line1 |
| 52 | self.history.pointer = 0 |
| 53 | self.history.store(line2) |
| 54 | self.assertIsNone(self.history.prefix) |
| 55 | self.assertIsNone(self.history.pointer) |
| 56 | |
| 57 | |
| 58 | class TextWrapper: |
nothing calls this directly
no test coverage detected