]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_future5.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / test_future5.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_future5.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_future5.py
deleted file mode 100644 (file)
index 2154a90..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-# Check that multiple features can be enabled.\r
-from __future__ import unicode_literals, print_function\r
-\r
-import sys\r
-import unittest\r
-from . import test_support\r
-\r
-\r
-class TestMultipleFeatures(unittest.TestCase):\r
-\r
-    def test_unicode_literals(self):\r
-        self.assertIsInstance("", unicode)\r
-\r
-    def test_print_function(self):\r
-        with test_support.captured_output("stderr") as s:\r
-            print("foo", file=sys.stderr)\r
-        self.assertEqual(s.getvalue(), "foo\n")\r
-\r
-\r
-def test_main():\r
-    test_support.run_unittest(TestMultipleFeatures)\r