diff options
| author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-07-15 03:07:47 (GMT) |
|---|---|---|
| committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-07-15 03:07:47 (GMT) |
| commit | 24fb2d4012d6bc89284f5160b7415e98d294d569 (patch) | |
| tree | d76ce1a15599a1a511afeb85e2b740011e1832c8 /Lib/idlelib/idle_test/test_configdialog.py | |
| parent | bbbf45b08d49bd74341cccc24d8fe345cf1eea85 (diff) | |
| parent | cfa8950aaba03b1b3f6dc03e700f69edb88b1d67 (diff) | |
| download | cpython-24fb2d4012d6bc89284f5160b7415e98d294d569.zip cpython-24fb2d4012d6bc89284f5160b7415e98d294d569.tar.gz cpython-24fb2d4012d6bc89284f5160b7415e98d294d569.tar.bz2 | |
Merge with 3.4
Diffstat (limited to 'Lib/idlelib/idle_test/test_configdialog.py')
| -rw-r--r-- | Lib/idlelib/idle_test/test_configdialog.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Lib/idlelib/idle_test/test_configdialog.py b/Lib/idlelib/idle_test/test_configdialog.py new file mode 100644 index 0000000..6883123 --- /dev/null +++ b/Lib/idlelib/idle_test/test_configdialog.py @@ -0,0 +1,32 @@ +'''Unittests for idlelib/configHandler.py + +Coverage: 46% just by creating dialog. The other half is change code. + +''' +import unittest +from test.support import requires +from tkinter import Tk +from idlelib.configDialog import ConfigDialog +from idlelib.macosxSupport import _initializeTkVariantTests + + +class ConfigDialogTest(unittest.TestCase): + + @classmethod + def setUpClass(cls): + requires('gui') + cls.root = Tk() + _initializeTkVariantTests(cls.root) + + @classmethod + def tearDownClass(cls): + cls.root.destroy() + del cls.root + + def test_dialog(self): + d=ConfigDialog(self.root, 'Test', _utest=True) + d.destroy() + + +if __name__ == '__main__': + unittest.main(verbosity=2) |
