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

benjamin.peterson python-checkins at python.org
Mon Nov 2 19:24:57 CET 2009


Author: benjamin.peterson
Date: Mon Nov  2 19:24:57 2009
New Revision: 76067

Log:
enable test_parser in lib2to3

Modified:
   python/trunk/Lib/test/test_lib2to3.py

Modified: python/trunk/Lib/test/test_lib2to3.py
==============================================================================
--- python/trunk/Lib/test/test_lib2to3.py	(original)
+++ python/trunk/Lib/test/test_lib2to3.py	Mon Nov  2 19:24:57 2009
@@ -1,13 +1,14 @@
 # Skipping test_parser and test_all_fixers
 # because of running
-from lib2to3.tests import test_fixers, test_pytree, test_util, test_refactor
+from lib2to3.tests import (test_fixers, test_pytree, test_util, test_refactor,
+                           test_parser)
 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, test_refactor):
+    for m in (test_fixers, test_pytree,test_util, test_refactor, test_parser):
         tests.addTests(loader.loadTestsFromModule(m))
     return tests
 


More information about the Python-checkins mailing list