2013-07-28 04:00:20 +00:00
|
|
|
import unittest
|
2014-05-02 15:51:07 +00:00
|
|
|
from test.support import import_module
|
2013-07-28 04:00:20 +00:00
|
|
|
|
2018-05-22 17:24:04 +00:00
|
|
|
# Skip test_idle if _tkinter wasn't built, if tkinter is missing,
|
|
|
|
# if tcl/tk is not the 8.5+ needed for ttk widgets,
|
|
|
|
# or if idlelib is missing (not installed).
|
|
|
|
tk = import_module('tkinter') # Also imports _tkinter.
|
2016-06-10 01:09:15 +00:00
|
|
|
if tk.TkVersion < 8.5:
|
|
|
|
raise unittest.SkipTest("IDLE requires tk 8.5 or later.")
|
2016-06-26 21:48:02 +00:00
|
|
|
idlelib = import_module('idlelib')
|
2013-05-28 01:32:03 +00:00
|
|
|
|
2018-05-22 17:24:04 +00:00
|
|
|
# Before importing and executing more of idlelib,
|
|
|
|
# tell IDLE to avoid changing the environment.
|
2016-08-16 04:10:14 +00:00
|
|
|
idlelib.testing = True
|
|
|
|
|
2018-05-22 17:24:04 +00:00
|
|
|
# Unittest.main and test.libregrtest.runtest.runtest_inner
|
|
|
|
# call load_tests, when present here, to discover tests to run.
|
2016-06-26 21:48:02 +00:00
|
|
|
from idlelib.idle_test import load_tests
|
2013-05-28 01:32:03 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2016-08-16 04:10:14 +00:00
|
|
|
tk.NoDefaultRoot()
|
|
|
|
unittest.main(exit=False)
|
2016-07-25 04:31:54 +00:00
|
|
|
tk._support_default_root = 1
|
|
|
|
tk._default_root = None
|