(cls)
| 613 | |
| 614 | @classmethod |
| 615 | def setUpClass(cls): |
| 616 | requires('gui') |
| 617 | cls.root = Tk() |
| 618 | cls.root.withdraw() |
| 619 | cls.text = Text(cls.root) |
| 620 | cls.editor = MockEditor(text=cls.text) |
| 621 | cls.do_rstrip = ft.Rstrip(cls.editor).do_rstrip |
| 622 | |
| 623 | @classmethod |
| 624 | def tearDownClass(cls): |