aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_json/test_pass2.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-08-08 15:03:45 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2013-08-08 15:03:45 +0300
commit66f2ea042acf792bf6ff432f409628e1cec99e43 (patch)
tree9d7e5a24d3f26eeeb63a0f00fa4758b5dde8d099 /Lib/test/test_json/test_pass2.py
parent0d2d2b83935a516235f4dbce25aefad789d088cf (diff)
downloadcpython-66f2ea042acf792bf6ff432f409628e1cec99e43.tar.gz
cpython-66f2ea042acf792bf6ff432f409628e1cec99e43.zip
#18273: move the tests in Lib/test/json_tests to Lib/test/test_json and make them discoverable by unittest. Patch by Zachary Ware.
Diffstat (limited to 'Lib/test/test_json/test_pass2.py')
-rw-r--r--Lib/test/test_json/test_pass2.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/Lib/test/test_json/test_pass2.py b/Lib/test/test_json/test_pass2.py
new file mode 100644
index 00000000000..35075249e3b
--- /dev/null
+++ b/Lib/test/test_json/test_pass2.py
@@ -0,0 +1,18 @@
+from test.test_json import PyTest, CTest
+
+
+# from http://json.org/JSON_checker/test/pass2.json
+JSON = r'''
+[[[[[[[[[[[[[[[[[[["Not too deep"]]]]]]]]]]]]]]]]]]]
+'''
+
+class TestPass2:
+ def test_parse(self):
+ # test in/out equivalence and parsing
+ res = self.loads(JSON)
+ out = self.dumps(res)
+ self.assertEqual(res, self.loads(out))
+
+
+class TestPyPass2(TestPass2, PyTest): pass
+class TestCPass2(TestPass2, CTest): pass