(self)
| 400 | requires('gui') |
| 401 | |
| 402 | def test_click_module_name(self): |
| 403 | root = Tk() |
| 404 | root.withdraw() |
| 405 | dialog = query.Goto(root, 'T', 't', _utest=True) |
| 406 | dialog.entry.insert(0, '22') |
| 407 | dialog.button_ok.invoke() |
| 408 | self.assertEqual(dialog.result, 22) |
| 409 | root.destroy() |
| 410 | |
| 411 | |
| 412 | class HelpsourceGuiTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected