Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
3.1
/
.
/
Lib
/
json
/
tests
/
test_default.py
blob: 14dee2702ead4517d16a5f13167cc548021150ae [
file
] [
log
] [
blame
]
from
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