mirror of
https://github.com/evilhero/mylar
synced 2024-12-26 09:36:53 +00:00
69eeb9b49d
Update bs4 to latest version to fix issues Get clean modules using `pip install --upgrade --target=lib` Move cherrypy, mako, pystun, bs4 into lib directory
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)))
|