mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-04-16 15:01:14 +02:00
python: Add test for unpacking buffer object.
This commit is contained in:
parent
09bad2938e
commit
b1df5d3ad7
16
python/test/test_buffer.py
Normal file
16
python/test/test_buffer.py
Normal file
@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env python
|
||||
# coding: utf-8
|
||||
|
||||
from nose import main
|
||||
from nose.tools import *
|
||||
from msgpack import packb, unpackb
|
||||
|
||||
def test_unpack_buffer():
|
||||
from array import array
|
||||
buf = array('b')
|
||||
buf.fromstring(packb(['foo', 'bar']))
|
||||
obj = unpackb(buf)
|
||||
assert_equal(['foo', 'bar'], obj)
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
Loading…
x
Reference in New Issue
Block a user