diff options
| author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-05-28 01:32:03 (GMT) |
|---|---|---|
| committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-05-28 01:32:03 (GMT) |
| commit | db4e5c53c9a68cbb19a8daca0c454360d1045c6f (patch) | |
| tree | 3a4e7e2d0110a0cda51913b0ae031a4ceced47d8 /Lib/idlelib/idle_test/__init__.py | |
| parent | ecf085180906b72a0378f3ba87ba3923e213d879 (diff) | |
| download | cpython-db4e5c53c9a68cbb19a8daca0c454360d1045c6f.zip cpython-db4e5c53c9a68cbb19a8daca0c454360d1045c6f.tar.gz cpython-db4e5c53c9a68cbb19a8daca0c454360d1045c6f.tar.bz2 | |
Issue #15392: Create a unittest framework for IDLE.
Preliminary patch by Rajagopalasarma Jayakrishnan.
Diffstat (limited to 'Lib/idlelib/idle_test/__init__.py')
| -rw-r--r-- | Lib/idlelib/idle_test/__init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/idlelib/idle_test/__init__.py b/Lib/idlelib/idle_test/__init__.py new file mode 100644 index 0000000..1bc9536 --- /dev/null +++ b/Lib/idlelib/idle_test/__init__.py @@ -0,0 +1,9 @@ +from os.path import dirname + +def load_tests(loader, standard_tests, pattern): + this_dir = dirname(__file__) + top_dir = dirname(dirname(this_dir)) + package_tests = loader.discover(start_dir=this_dir, pattern='test*.py', + top_level_dir=top_dir) + standard_tests.addTests(package_tests) + return standard_tests |
