mirror of
https://github.com/python/cpython.git
synced 2025-08-18 07:41:05 +00:00

svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
9 lines
207 B
Python
9 lines
207 B
Python
from unittest import TestCase
|
|
|
|
import json
|
|
|
|
class TestDefault(TestCase):
|
|
def test_default(self):
|
|
self.assertEqual(
|
|
json.dumps(type, default=repr),
|
|
json.dumps(repr(type)))
|