]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/test_all_fixers.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / lib2to3 / tests / test_all_fixers.py
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 (file)
index 18f532c..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-"""Tests that run all fixer modules over an input stream.\r
-\r
-This has been broken out into its own test module because of its\r
-running time.\r
-"""\r
-# Author: Collin Winter\r
-\r
-# Python imports\r
-import unittest\r
-\r
-# Local imports\r
-from lib2to3 import refactor\r
-from . import support\r
-\r
-\r
-class Test_all(support.TestCase):\r
-\r
-    def setUp(self):\r
-        self.refactor = support.get_refactorer()\r
-\r
-    def test_all_project_files(self):\r
-        for filepath in support.all_project_files():\r
-            self.refactor.refactor_file(filepath)\r