]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/test_pass2.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / Lib / json / tests / test_pass2.py
diff --git a/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/test_pass2.py b/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/test_pass2.py
deleted file mode 100644 (file)
index 4972490..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-from json.tests import PyTest, CTest\r
-\r
-\r
-# from http://json.org/JSON_checker/test/pass2.json\r
-JSON = r'''\r
-[[[[[[[[[[[[[[[[[[["Not too deep"]]]]]]]]]]]]]]]]]]]\r
-'''\r
-\r
-class TestPass2(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 TestPyPass2(TestPass2, PyTest): pass\r
-class TestCPass2(TestPass2, CTest): pass\r