commit | 85f1820ee15faec7961056ace378f2d444419c1c | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Nov 27 22:53:50 1992 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Nov 27 22:53:50 1992 +0000 |
tree | 41ccba707377e7df1229b0dd8806217dee497fbc | |
parent | d014ea6b5efbfb3d143fc8aacf8bee733cf4c8f0 [diff] [blame] |
Added some new tests and two new files for testing: test_types.py (testing operations on built-in types) and autotest.py (automatic regression testing).
diff --git a/Lib/test/testall.py b/Lib/test/testall.py index 5f17be1..92e7b9f 100644 --- a/Lib/test/testall.py +++ b/Lib/test/testall.py
@@ -25,4 +25,8 @@ unload('test_exceptions') import test_exceptions +print 'test_types' +unload('test_types') +import test_types + print 'Passed all tests.'