(self)
| 61 | view.ok() |
| 62 | |
| 63 | def test_ok(self): |
| 64 | view = VW(root, 'Title', 'test text', modal=False) |
| 65 | view.destroy = Func() |
| 66 | view.ok() |
| 67 | self.assertTrue(view.destroy.called) |
| 68 | del view.destroy # Unmask real function. |
| 69 | view.destroy() |
| 70 | |
| 71 | |
| 72 | class AutoHideScrollbarTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected