diff options
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r-- | Lib/test/test_support.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 11ca0c2..44fe334 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -426,9 +426,14 @@ class TestSupport(unittest.TestCase): extra=extra, not_exported=not_exported) - extra = {'TextTestResult', 'installHandler'} + extra = { + 'TextTestResult', + 'findTestCases', + 'getTestCaseNames', + 'installHandler', + 'makeSuite', + } not_exported = {'load_tests', "TestProgram", "BaseTestSuite"} - support.check__all__(self, unittest, ("unittest.result", "unittest.case", |