Sign in
android
/
platform
/
external
/
python
/
cpython2
/
c83ea137d7e717f764e2f31fc2544f522de7d857
/
.
/
Lib
/
json
/
tests
/
test_default.py
blob: 49f05ad660c6074d6fc6efda69d4b45c8432baea [
file
] [
log
] [
blame
]
from
unittest
import
TestCase
import
json
class
TestDefault
(
TestCase
):
def
test_default
(
self
):
self
.
assertEquals
(
json
.
dumps
(
type
,
default
=
repr
),
json
.
dumps
(
repr
(
type
)))