summaryrefslogtreecommitdiff
path: root/test/test_pack.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_pack.py')
-rw-r--r--test/test_pack.py6
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: