summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tkinter/test_simpledialog.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-06-22 20:23:37 (GMT)
committerGitHub <noreply@github.com>2022-06-22 20:23:37 (GMT)
commitc1fb12e5afa09aca3134a9bc0116c31dbcccc5e9 (patch)
tree0e730c9d6f9275d2870910a28be48d0bc3a5d9af /Lib/test/test_tkinter/test_simpledialog.py
parent47e35625ff2c4e6511a12e7178c3e4fbc965b634 (diff)
downloadcpython-c1fb12e5afa09aca3134a9bc0116c31dbcccc5e9.zip
cpython-c1fb12e5afa09aca3134a9bc0116c31dbcccc5e9.tar.gz
cpython-c1fb12e5afa09aca3134a9bc0116c31dbcccc5e9.tar.bz2
gh-54781: Move Lib/tkinter/test/test_ttk/ to Lib/test/test_ttk/ (#94070)
* Move Lib/tkinter/test/test_tkinter/ to Lib/test/test_tkinter/. * Move Lib/tkinter/test/test_ttk/ to Lib/test/test_ttk/. * Add Lib/test/test_ttk/__init__.py based on test_ttk_guionly.py. * Add Lib/test/test_tkinter/__init__.py * Remove old Lib/test/test_tk.py. * Remove old Lib/test/test_ttk_guionly.py. * Add __main__ sub-modules. * Update imports and update references to rename files.
Diffstat (limited to 'Lib/test/test_tkinter/test_simpledialog.py')
-rw-r--r--Lib/test/test_tkinter/test_simpledialog.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/Lib/test/test_tkinter/test_simpledialog.py b/Lib/test/test_tkinter/test_simpledialog.py
new file mode 100644
index 0000000..502f7f7
--- /dev/null
+++ b/Lib/test/test_tkinter/test_simpledialog.py
@@ -0,0 +1,35 @@
+import unittest
+import tkinter
+from test.support import requires, swap_attr
+from test.test_tkinter.support import AbstractDefaultRootTest
+from tkinter.simpledialog import Dialog, askinteger
+
+requires('gui')
+
+
+class DefaultRootTest(AbstractDefaultRootTest, unittest.TestCase):
+
+ def test_askinteger(self):
+ @staticmethod
+ def mock_wait_window(w):
+ nonlocal ismapped
+ ismapped = w.master.winfo_ismapped()
+ w.destroy()
+
+ with swap_attr(Dialog, 'wait_window', mock_wait_window):
+ ismapped = None
+ askinteger("Go To Line", "Line number")
+ self.assertEqual(ismapped, False)
+
+ root = tkinter.Tk()
+ ismapped = None
+ askinteger("Go To Line", "Line number")
+ self.assertEqual(ismapped, True)
+ root.destroy()
+
+ tkinter.NoDefaultRoot()
+ self.assertRaises(RuntimeError, askinteger, "Go To Line", "Line number")
+
+
+if __name__ == "__main__":
+ unittest.main()