From 66f2ea042acf792bf6ff432f409628e1cec99e43 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Thu, 8 Aug 2013 15:03:45 +0300 Subject: #18273: move the tests in Lib/test/json_tests to Lib/test/test_json and make them discoverable by unittest. Patch by Zachary Ware. --- Lib/test/test_json/test_pass3.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Lib/test/test_json/test_pass3.py (limited to 'Lib/test/test_json/test_pass3.py') diff --git a/Lib/test/test_json/test_pass3.py b/Lib/test/test_json/test_pass3.py new file mode 100644 index 00000000000..cd0cf170d27 --- /dev/null +++ b/Lib/test/test_json/test_pass3.py @@ -0,0 +1,24 @@ +from test.test_json import PyTest, CTest + + +# from http://json.org/JSON_checker/test/pass3.json +JSON = r''' +{ + "JSON Test Pattern pass3": { + "The outermost value": "must be an object or array.", + "In this test": "It is an object." + } +} +''' + + +class TestPass3: + 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 TestPyPass3(TestPass3, PyTest): pass +class TestCPass3(TestPass3, CTest): pass -- cgit v1.2.3