mirror of
https://github.com/python/cpython.git
synced 2025-07-15 15:25:29 +00:00
12 lines
291 B
Python
12 lines
291 B
Python
from test.json_tests import PyTest, CTest
|
|
|
|
|
|
class TestDefault:
|
|
def test_default(self):
|
|
self.assertEqual(
|
|
self.dumps(type, default=repr),
|
|
self.dumps(repr(type)))
|
|
|
|
|
|
class TestPyDefault(TestDefault, PyTest): pass
|
|
class TestCDefault(TestDefault, CTest): pass
|