summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tk_textonly.py
diff options
context:
space:
mode:
authorGuilherme Polo <ggpolo@gmail.com>2009-01-28 13:09:03 (GMT)
committerGuilherme Polo <ggpolo@gmail.com>2009-01-28 13:09:03 (GMT)
commitcda93aafde744df8006950c13e9893f29a747c31 (patch)
tree60e69e4b467f4c3e92cee15cba3a62916c362c8c /Lib/test/test_tk_textonly.py
parentfd0107fdf9e3ef5bfc77010fa3d8f44e1f28441f (diff)
downloadcpython-cda93aafde744df8006950c13e9893f29a747c31.zip
cpython-cda93aafde744df8006950c13e9893f29a747c31.tar.gz
cpython-cda93aafde744df8006950c13e9893f29a747c31.tar.bz2
Added the ttk module. See issue #2983: Ttk support for Tkinter.
Diffstat (limited to 'Lib/test/test_tk_textonly.py')
-rw-r--r--Lib/test/test_tk_textonly.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/Lib/test/test_tk_textonly.py b/Lib/test/test_tk_textonly.py
new file mode 100644
index 0000000..1a8df2be
--- /dev/null
+++ b/Lib/test/test_tk_textonly.py
@@ -0,0 +1,16 @@
+import os
+import sys
+from test import test_support
+
+this_dir = os.path.dirname(os.path.abspath(__file__))
+lib_tk_test = os.path.abspath(os.path.join(this_dir, '..', 'lib-tk', 'test'))
+if lib_tk_test not in sys.path:
+ sys.path.append(lib_tk_test)
+
+import runtktests
+
+def test_main():
+ test_support.run_unittest(*runtktests.get_tests(gui=False))
+
+if __name__ == '__main__':
+ test_main()