test_pass3.py 545 Bytes
Newer Older
Ezio Melotti's avatar
Ezio Melotti committed
1
from test.json_tests import PyTest, CTest
2 3 4 5 6 7 8 9 10 11 12 13


# 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."
    }
}
'''

Ezio Melotti's avatar
Ezio Melotti committed
14 15

class TestPass3:
16 17
    def test_parse(self):
        # test in/out equivalence and parsing
Ezio Melotti's avatar
Ezio Melotti committed
18 19 20 21 22 23 24
        res = self.loads(JSON)
        out = self.dumps(res)
        self.assertEqual(res, self.loads(out))


class TestPyPass3(TestPass3, PyTest): pass
class TestCPass3(TestPass3, CTest): pass