diff options
| author | Collin Winter <collinw@gmail.com> | 2007-04-25 17:29:52 (GMT) |
|---|---|---|
| committer | Collin Winter <collinw@gmail.com> | 2007-04-25 17:29:52 (GMT) |
| commit | c2898c5a678e6dd00c3e0b18a214fcd7a3533800 (patch) | |
| tree | dfaedbddee7b0ef79a19527788b8a720658e79bb /Lib/test/test_codecmaps_kr.py | |
| parent | 0d4c06e06e5ee1f3bb1fa8068114bd700d74864a (diff) | |
| download | cpython-c2898c5a678e6dd00c3e0b18a214fcd7a3533800.zip cpython-c2898c5a678e6dd00c3e0b18a214fcd7a3533800.tar.gz cpython-c2898c5a678e6dd00c3e0b18a214fcd7a3533800.tar.bz2 | |
Standardize on test.test_support.run_unittest() (as opposed to a mix of run_unittest() and run_suite()). Also, add functionality to run_unittest() that admits usage of unittest.TestLoader.loadTestsFromModule().
Diffstat (limited to 'Lib/test/test_codecmaps_kr.py')
| -rw-r--r-- | Lib/test/test_codecmaps_kr.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Lib/test/test_codecmaps_kr.py b/Lib/test/test_codecmaps_kr.py index 7484a66..1b350b9 100644 --- a/Lib/test/test_codecmaps_kr.py +++ b/Lib/test/test_codecmaps_kr.py @@ -34,11 +34,7 @@ class TestJOHABMap(test_multibytecodec_support.TestBase_Mapping, pass_dectest = [('\\', u'\u20a9')] def test_main(): - suite = unittest.TestSuite() - suite.addTest(unittest.makeSuite(TestCP949Map)) - suite.addTest(unittest.makeSuite(TestEUCKRMap)) - suite.addTest(unittest.makeSuite(TestJOHABMap)) - test_support.run_suite(suite) + test_support.run_unittest(__name__) if __name__ == "__main__": test_main() |
