mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 05:01:14 -07:00
9 lines
221 B
Python
9 lines
221 B
Python
from unittest import TestCase
|
|
|
|
import simplejson as json
|
|
|
|
class TestDefault(TestCase):
|
|
def test_default(self):
|
|
self.assertEqual(
|
|
json.dumps(type, default=repr),
|
|
json.dumps(repr(type)))
|