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