(self)
| 155 | del cls.orig_error |
| 156 | |
| 157 | def test_view_text(self): |
| 158 | view = tv.view_text(root, 'Title', 'test text', modal=False) |
| 159 | self.assertIsInstance(view, tv.ViewWindow) |
| 160 | self.assertIsInstance(view.viewframe, tv.ViewFrame) |
| 161 | view.viewframe.ok() |
| 162 | |
| 163 | def test_view_file(self): |
| 164 | view = tv.view_file(root, 'Title', __file__, 'ascii', modal=False) |
nothing calls this directly
no test coverage detected