X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=AppPkg%2FApplications%2FPython%2FPython-2.7.2%2FLib%2Flib2to3%2Ftests%2Ftest_all_fixers.py;fp=AppPkg%2FApplications%2FPython%2FPython-2.7.2%2FLib%2Flib2to3%2Ftests%2Ftest_all_fixers.py;h=0000000000000000000000000000000000000000;hp=18f532c477cb3d0955ed2c856ffff3fdc8c3a727;hb=964f432b9b0afe103c41c7613fade3e699118afe;hpb=e2d3a25f1a3135221a9c8061e1b8f90245d727eb diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/test_all_fixers.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/test_all_fixers.py deleted file mode 100644 index 18f532c477..0000000000 --- a/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/test_all_fixers.py +++ /dev/null @@ -1,23 +0,0 @@ -"""Tests that run all fixer modules over an input stream. - -This has been broken out into its own test module because of its -running time. -""" -# Author: Collin Winter - -# Python imports -import unittest - -# Local imports -from lib2to3 import refactor -from . import support - - -class Test_all(support.TestCase): - - def setUp(self): - self.refactor = support.get_refactorer() - - def test_all_project_files(self): - for filepath in support.all_project_files(): - self.refactor.refactor_file(filepath)