Files
LazyLibrarian/lib/simplejson/tests/test_default.py
2017-01-07 22:50:41 +01: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)))