Issue #5330: C functions called with keyword arguments were not reported by
[python.git] / Lib / test / test_lib2to3.py
blobe332062994a4692c1b2b17fe08c00cad9c50b5dd
1 # Skipping test_parser and test_all_fixers
2 # because of running
3 from lib2to3.tests import test_fixers, test_pytree, test_util, test_refactor
4 import unittest
5 from test.test_support import run_unittest
7 def suite():
8 tests = unittest.TestSuite()
9 loader = unittest.TestLoader()
10 for m in (test_fixers,test_pytree,test_util, test_refactor):
11 tests.addTests(loader.loadTestsFromModule(m))
12 return tests
14 def test_main():
15 run_unittest(suite())
18 if __name__ == '__main__':
19 test_main()