blob: f591aba983a476a6e552f7dc4895e35886705d04 [file] [log] [blame]
jcgregorio@wpgntai-ubiq72.hot.corp.google.comed132522010-04-19 11:12:52 -07001from unittest import TestCase
2
3import simplejson as json
4
5# from http://json.org/JSON_checker/test/pass3.json
6JSON = r'''
7{
8 "JSON Test Pattern pass3": {
9 "The outermost value": "must be an object or array.",
10 "In this test": "It is an object."
11 }
12}
13'''
14
15class TestPass3(TestCase):
16 def test_parse(self):
17 # test in/out equivalence and parsing
18 res = json.loads(JSON)
19 out = json.dumps(res)
20 self.assertEquals(res, json.loads(out))