mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
13 lines
294 B
Python
13 lines
294 B
Python
from json.tests import PyTest, CTest
|
|
|
|
|
|
class TestDefault(object):
|
|
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
|