blob: 139e42bf4acaa4927ec9be1ec55a252b97d3f1e2 [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
5class TestDefault(TestCase):
6 def test_default(self):
7 self.assertEquals(
8 json.dumps(type, default=repr),
9 json.dumps(repr(type)))