Files
server/usr/lib/python3/dist-packages/simplejson/tests/test_default.py
2026-01-07 20:52:11 +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)))