mirror of
https://github.com/python/cpython.git
synced 2025-10-20 16:33:53 +00:00
14 lines
294 B
Python
14 lines
294 B
Python
![]() |
from unittest import TestCase
|
||
|
from io import StringIO
|
||
|
|
||
|
import json
|
||
|
|
||
|
class TestDump(TestCase):
|
||
|
def test_dump(self):
|
||
|
sio = StringIO()
|
||
|
json.dump({}, sio)
|
||
|
self.assertEquals(sio.getvalue(), '{}')
|
||
|
|
||
|
def test_dumps(self):
|
||
|
self.assertEquals(json.dumps({}), '{}')
|