summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-03-28 05:26:10 +0000
committerMartin v. Löwis <martin@v.loewis.de>2008-03-28 05:26:10 +0000
commit7ffd75d3666343d504da5ccf6a14204b95ee6b3b (patch)
tree2c3f06a0f7077cccb517b9bec65e54bc90c9a6c8 /Lib
parentb9d0806c46631ae6542c97cb05b9f14fbf37647b (diff)
downloadcpython-7ffd75d3666343d504da5ccf6a14204b95ee6b3b.tar.gz
Run 2to3 tests.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_lib2to3.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/Lib/test/test_lib2to3.py b/Lib/test/test_lib2to3.py
new file mode 100644
index 0000000000..beda695993
--- /dev/null
+++ b/Lib/test/test_lib2to3.py
@@ -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())