]> granicus.if.org Git - python/commitdiff
add new skipping things to __all__
authorBenjamin Peterson <benjamin@python.org>
Tue, 24 Mar 2009 00:39:24 +0000 (00:39 +0000)
committerBenjamin Peterson <benjamin@python.org>
Tue, 24 Mar 2009 00:39:24 +0000 (00:39 +0000)
Lib/unittest.py

index c67ec0633c8c80bf7b4008a558a860bfcf1286c9..22f8a3d0d08b23bdadd89ac0035fb69dbab999e8 100644 (file)
@@ -55,8 +55,10 @@ import functools
 ##############################################################################
 # Exported classes and functions
 ##############################################################################
-__all__ = ['TestResult', 'TestCase', 'TestSuite', 'TextTestRunner',
-           'TestLoader', 'FunctionTestCase', 'main', 'defaultTestLoader']
+__all__ = ['TestResult', 'TestCase', 'TestSuite', 'ClassTestSuite',
+           'TextTestRunner', 'TestLoader', 'FunctionTestCase', 'main',
+           'defaultTestLoader', 'SkipException', 'skip', 'skipIf', 'skipUnless',
+           'expectedFailure']
 
 # Expose obsolete functions for backwards compatibility
 __all__.extend(['getTestCaseNames', 'makeSuite', 'findTestCases'])