diff options
author | tailhook <pc@gafol.net> | 2011-08-22 01:52:45 +0900 |
---|---|---|
committer | INADA Naoki <songofacandy@gmail.com> | 2011-08-22 01:52:45 +0900 |
commit | 8c3c8a250b5f6f129e5e077a224ec6916cc87437 (patch) | |
tree | 31059bfc338c441bbe09fb23747b39137894a3fb /test | |
parent | 4a1ce19addc6fc5faf26101b16124401113889d1 (diff) | |
download | msgpack-python-8c3c8a250b5f6f129e5e077a224ec6916cc87437.tar.gz |
Fixed `encoding` argument for unpacker in Python
Diffstat (limited to 'test')
-rw-r--r-- | test/test_pack.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_pack.py b/test/test_pack.py index 2b5f1ad..357cb3c 100644 --- a/test/test_pack.py +++ b/test/test_pack.py @@ -7,6 +7,8 @@ from nose.plugins.skip import SkipTest from msgpack import packs, unpacks +from StringIO import StringIO + def check(data): re = unpacks(packs(data)) assert_equal(re, data) @@ -32,6 +34,10 @@ def testPackUnicode(): for td in test_data: re = unpacks(packs(td, encoding='utf-8'), encoding='utf-8') assert_equal(re, td) + packer = Packer(encoding='utf-8') + data = packer.pack(td) + re = Unpacker(StringIO(data), encoding='utf-8').unpack() + assert_equal(re, td) def testPackUTF32(): try: |