示例#1
0
def test_pack_json():
    assert Buffer.pack_json({"spam": "eggs"}) == b'\x10{"spam": "eggs"}'
示例#2
0
 def to_bytes(self):
     return Buffer.pack_json(self.value)