diff options
author | Fred Drake <fdrake@acm.org> | 2001-09-20 21:33:42 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-09-20 21:33:42 (GMT) |
commit | 2e2be3760ccdfd4bdde4afdd66f4078022ba3b61 (patch) | |
tree | d1b7dce65ddcecf2f312acfdb319ba656e99c3a1 /Lib/test/test_weakref.py | |
parent | 6f7993765ac0989b5d13084240797913627a31d8 (diff) | |
download | cpython-2e2be3760ccdfd4bdde4afdd66f4078022ba3b61.zip cpython-2e2be3760ccdfd4bdde4afdd66f4078022ba3b61.tar.gz cpython-2e2be3760ccdfd4bdde4afdd66f4078022ba3b61.tar.bz2 |
Change the PyUnit-based tests to use the test_main() approach. This
allows using the tests with unittest.py as a script. The tests will
still run when run as a script themselves.
Diffstat (limited to 'Lib/test/test_weakref.py')
-rw-r--r-- | Lib/test/test_weakref.py | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/Lib/test/test_weakref.py b/Lib/test/test_weakref.py index fa12a6e..5dfa6ce 100644 --- a/Lib/test/test_weakref.py +++ b/Lib/test/test_weakref.py @@ -2,7 +2,7 @@ import sys import unittest import weakref -from test_support import run_unittest +import test_support class C: @@ -434,5 +434,13 @@ class MappingTestCase(TestBase): self.assert_(d.items() == [('something else', o2)]) -run_unittest(ReferencesTestCase) -run_unittest(MappingTestCase) +def test_main(): + loader = unittest.TestLoader() + suite = unittest.TestSuite() + suite.addTest(loader.loadTestsFromTestCase(ReferencesTestCase)) + suite.addTest(loader.loadTestsFromTestCase(MappingTestCase)) + test_support.run_suite(suite) + + +if __name__ == "__main__": + test_main() |