Files
GoogleDriveManagement/simplejson/tests/test_default.py
2014-06-28 10:14:05 -04:00

10 lines
221 B
Python

from unittest import TestCase
import simplejson as json
class TestDefault(TestCase):
def test_default(self):
self.assertEqual(
json.dumps(type, default=repr),
json.dumps(repr(type)))