(self)
| 286 | del cls.root |
| 287 | |
| 288 | def test_short_line(self): |
| 289 | self.text.insert('1.0', "Short line\n") |
| 290 | self.formatter("Dummy") |
| 291 | self.assertEqual(self.text.get('1.0', 'insert'), "Short line\n" ) |
| 292 | self.text.delete('1.0', 'end') |
| 293 | |
| 294 | def test_long_line(self): |
| 295 | text = self.text |
nothing calls this directly
no test coverage detected