1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2025-02-10 08:14:49 +00:00
mylar/lib/simplejson/tests/test_default.py

10 lines
222 B
Python
Raw Normal View History

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