FanFicFare/simplejson/tests/test_default.py
Ida 938cb4eec5 First version of the adapters for
yourfanfiction.com and samdean.archive.nu
2012-06-14 20:57:30 -04:00

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