1from json.tests import PyTest, CTest
2
3
4# from http://json.org/JSON_checker/test/pass2.json
5JSON = r'''
6[[[[[[[[[[[[[[[[[[["Not too deep"]]]]]]]]]]]]]]]]]]]
7'''
8
9class TestPass2(object):
10    def test_parse(self):
11        # test in/out equivalence and parsing
12        res = self.loads(JSON)
13        out = self.dumps(res)
14        self.assertEqual(res, self.loads(out))
15
16
17class TestPyPass2(TestPass2, PyTest): pass
18class TestCPass2(TestPass2, CTest): pass
19