def test_dump_basic(self):
json_str = '{ "test" : "me" }'
bson_bytes = bsonjs.loads(json_str)
filep = StringIO()
bsonjs.dump(bson_bytes, filep)
filep.seek(0)
self.assertEqual(json_str, filep.read())
文章目录