Bug 777068 - Move simplejson to python/; r=glandium

This commit is contained in:
Gregory Szorc
2012-07-26 13:07:28 -07:00
parent 755f3a7a63
commit 063b54a3cd
58 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
from unittest import TestCase
import simplejson as json
class TestDefault(TestCase):
def test_default(self):
self.assertEquals(
json.dumps(type, default=repr),
json.dumps(repr(type)))