diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-27 21:12:20 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-27 21:12:20 (GMT) |
commit | 003d7463ddb486b1b216dbe36023263dc9492762 (patch) | |
tree | 61dad8b0f54c97c69f7295436cd428bff7f584a1 /Lib/test | |
parent | 08be29193eb93c1a9add061768fcc7ba5d6f3d4e (diff) | |
download | cpython-003d7463ddb486b1b216dbe36023263dc9492762.zip cpython-003d7463ddb486b1b216dbe36023263dc9492762.tar.gz cpython-003d7463ddb486b1b216dbe36023263dc9492762.tar.bz2 |
enable refactor tests
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_lib2to3.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_lib2to3.py b/Lib/test/test_lib2to3.py index 161b9dd..e332062 100644 --- a/Lib/test/test_lib2to3.py +++ b/Lib/test/test_lib2to3.py @@ -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 |