(cls)
| 28 | |
| 29 | @classmethod |
| 30 | def tearDownClass(cls): |
| 31 | del cls.text, cls.entry, cls.tentry |
| 32 | cls.root.clipboard_clear() |
| 33 | cls.root.update_idletasks() |
| 34 | cls.root.destroy() |
| 35 | del cls.root |
| 36 | |
| 37 | def test_paste_text(self): |
| 38 | "Test pasting into text with and without a selection." |
nothing calls this directly
no test coverage detected