16 lines
345 B
Python
16 lines
345 B
Python
from test import support
|
|
from test.support import import_helper
|
|
|
|
|
|
# Skip this test if _tkinter does not exist.
|
|
import_helper.import_module('_tkinter')
|
|
|
|
from tkinter.test import runtktests
|
|
|
|
def test_main():
|
|
support.run_unittest(
|
|
*runtktests.get_tests(gui=False, packages=['test_ttk']))
|
|
|
|
if __name__ == '__main__':
|
|
test_main()
|