(w)
| 13 | def test_askinteger(self): |
| 14 | @staticmethod |
| 15 | def mock_wait_window(w): |
| 16 | nonlocal ismapped |
| 17 | ismapped = w.master.winfo_ismapped() |
| 18 | w.destroy() |
| 19 | |
| 20 | with swap_attr(Dialog, 'wait_window', mock_wait_window): |
| 21 | ismapped = None |
nothing calls this directly
no test coverage detected