cpython/Lib/tkinter/test
Serhiy Storchaka ce591c2868 Issue #20368: The null character now correctly passed from Tcl to Python.
Improved error handling in variables-related commands.
2014-02-03 21:25:56 +02:00
..
test_tkinter Issue #20368: The null character now correctly passed from Tcl to Python. 2014-02-03 21:25:56 +02:00
test_ttk Fixed typo. 2014-01-13 14:23:18 +02:00
__init__.py
README
runtktests.py
support.py Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.11 (issue #19085). 2013-11-09 21:16:19 +02:00
widget_tests.py Issue #19020: Tkinter now uses splitlist() instead of split() in configure 2013-12-25 16:35:38 +02:00

Writing new tests
=================

Precaution
----------

    New tests should always use only one Tk window at once, like all the
    current tests do. This means that you have to destroy the current window
    before creating another one, and clean up after the test. The motivation
    behind this is that some tests may depend on having its window focused
    while it is running to work properly, and it may be hard to force focus
    on your window across platforms (right now only test_traversal at
    test_ttk.test_widgets.NotebookTest depends on this).