source: python/trunk/Lib/test/test_lib2to3.py

Last change on this file was 391, checked in by dmik, 11 years ago

python: Merge vendor 2.7.6 to trunk.

  • Property svn:eol-style set to native
File size: 614 bytes
Line 
1# Skipping test_parser and test_all_fixers
2# because of running
3from lib2to3.tests import (test_fixers, test_pytree, test_util, test_refactor,
4 test_parser, test_main as test_main_)
5import unittest
6from test.test_support import run_unittest
7
8def suite():
9 tests = unittest.TestSuite()
10 loader = unittest.TestLoader()
11 for m in (test_fixers, test_pytree,test_util, test_refactor, test_parser,
12 test_main_):
13 tests.addTests(loader.loadTestsFromModule(m))
14 return tests
15
16def test_main():
17 run_unittest(suite())
18
19
20if __name__ == '__main__':
21 test_main()
Note: See TracBrowser for help on using the repository browser.