Sign in
llvm
/
third_party
/
cpython
/
refs/heads/main
/
.
/
Lib
/
test
/
test_json
/
test_default.py
blob: 9b8325e9c3816b6bfc7fb042fd64ca277bfb3cdf [
file
] [
log
] [
blame
] [
edit
]
from
test
.
test_json
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