home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 May / maximum-cd-2010-05.iso / DiscContents / boxee-0.9.20.10711.exe / system / python / local / simplejson / tests / test_pass2.py < prev    next >
Encoding:
Python Source  |  2009-07-20  |  387 b   |  15 lines

  1. from unittest import TestCase
  2. import simplejson as json
  3.  
  4. # from http://json.org/JSON_checker/test/pass2.json
  5. JSON = r'''
  6. [[[[[[[[[[[[[[[[[[["Not too deep"]]]]]]]]]]]]]]]]]]]
  7. '''
  8.  
  9. class TestPass2(TestCase):
  10.     def test_parse(self):
  11.         # test in/out equivalence and parsing
  12.         res = json.loads(JSON)
  13.         out = json.dumps(res)
  14.         self.assertEquals(res, json.loads(out))
  15.