139e42bf4acaa4927ec9be1ec55a252b97d3f1e2
[clinton/xbmc-groove.git] / resources / lib / simplejson / tests / test_default.py
1 from unittest import TestCase
2
3 import simplejson as json
4
5 class TestDefault(TestCase):
6 def test_default(self):
7 self.assertEquals(
8 json.dumps(type, default=repr),
9 json.dumps(repr(type)))