cpython/Lib/tkinter/test
Serhiy Storchaka 745a407df8 Issue #22115: Fixed tracing Tkinter variables:
* tracing in the "u" mode now works
* trace_vdelete() with wrong mode no longer break tracing
* trace_vinfo() now always returns a list of pairs of strings
2016-06-26 17:42:23 +03:00
..
test_tkinter Issue #22115: Fixed tracing Tkinter variables: 2016-06-26 17:42:23 +03:00
test_ttk Issue #26386: Fixed ttk.TreeView selection operations with item id's 2016-06-14 12:33:31 +03:00
README
__init__.py
runtktests.py
support.py
widget_tests.py

README

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).