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

benjamin.peterson python-checkins at python.org
Sat Sep 27 23:12:20 CEST 2008


Author: benjamin.peterson
Date: Sat Sep 27 23:12:20 2008
New Revision: 66654

Log:
enable refactor tests

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	Sat Sep 27 23:12:20 2008
@@ -1,13 +1,13 @@
 # Skipping test_parser and test_all_fixers
 # because of running
-from lib2to3.tests import test_fixers, test_pytree, test_util
+from lib2to3.tests import test_fixers, test_pytree, test_util, test_refactor
 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):
+    for m in (test_fixers,test_pytree,test_util, test_refactor):
         tests.addTests(loader.loadTestsFromModule(m))
     return tests
 


More information about the Python-checkins mailing list