cpython/Lib/test/test_lib2to3.py

20 lines
507 B
Python
Raw Normal View History

2008-03-28 02:26:10 -03:00
# Skipping test_parser and test_all_fixers
# because of running
2008-09-27 18:12:20 -03:00
from lib2to3.tests import test_fixers, test_pytree, test_util, test_refactor
2008-03-28 02:26:10 -03:00
import unittest
from test.test_support import run_unittest
2008-03-28 02:26:10 -03:00
def suite():
tests = unittest.TestSuite()
loader = unittest.TestLoader()
2008-09-27 18:12:20 -03:00
for m in (test_fixers,test_pytree,test_util, test_refactor):
2008-03-28 02:26:10 -03:00
tests.addTests(loader.loadTestsFromModule(m))
return tests
def test_main():
run_unittest(suite())
if __name__ == '__main__':
test_main()