[Python-checkins] r61989 - python/trunk/Lib/test/test_lib2to3.py

martin.v.loewis python-checkins at python.org
Fri Mar 28 06:26:11 CET 2008


Author: martin.v.loewis
Date: Fri Mar 28 06:26:10 2008
New Revision: 61989

Added:
   python/trunk/Lib/test/test_lib2to3.py   (contents, props changed)
Log:
Run 2to3 tests.


Added: python/trunk/Lib/test/test_lib2to3.py
==============================================================================
--- (empty file)
+++ python/trunk/Lib/test/test_lib2to3.py	Fri Mar 28 06:26:10 2008
@@ -0,0 +1,15 @@
+# Skipping test_parser and test_all_fixers
+# because of running
+from lib2to3.tests import test_fixers, test_pytree, test_util
+import unittest
+from test.test_support import run_unittest
+
+def suite():
+    tests = unittest.TestSuite()
+    loader = unittest.TestLoader()
+    for m in (test_fixers,test_pytree,test_util):
+        tests.addTests(loader.loadTestsFromModule(m))
+    return tests
+
+def test_main():
+    run_unittest(suite())


More information about the Python-checkins mailing list