mirror of
http://git.mos6581.com/ManchildProductions/Male-Poon.git
synced 2026-06-17 07:08:28 +00:00
10 lines
222 B
Python
10 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)))
|