]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/test_pass3.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / json / tests / test_pass3.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/test_pass3.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/test_pass3.py
deleted file mode 100644 (file)
index 8dc6d76..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-from json.tests import PyTest, CTest\r
-\r
-\r
-# from http://json.org/JSON_checker/test/pass3.json\r
-JSON = r'''\r
-{\r
-    "JSON Test Pattern pass3": {\r
-        "The outermost value": "must be an object or array.",\r
-        "In this test": "It is an object."\r
-    }\r
-}\r
-'''\r
-\r
-\r
-class TestPass3(object):\r
-    def test_parse(self):\r
-        # test in/out equivalence and parsing\r
-        res = self.loads(JSON)\r
-        out = self.dumps(res)\r
-        self.assertEqual(res, self.loads(out))\r
-\r
-\r
-class TestPyPass3(TestPass3, PyTest): pass\r
-class TestCPass3(TestPass3, CTest): pass\r