Files
tablib/tablib/packages/simplejson/tests/test_default.py
T
2010-08-28 20:17:44 -04:00

10 lines
222 B
Python

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)))