python: Port some tests from 2 to 3.

This commit is contained in:
INADA Naoki
2010-11-03 03:15:12 +09:00
parent 4688252bd4
commit d1b6e65dd8
2 changed files with 29 additions and 0 deletions

View 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((b'foo', b'bar'), obj)
if __name__ == '__main__':
main()