mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-07 00:25:59 +01:00
allow config section [www.squidge.org/peja]. More needed to support other sites under www.squidge.org.
9 lines
222 B
Python
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)))
|