summaryrefslogtreecommitdiff
path: root/python/test/test_pack.py
diff options
context:
space:
mode:
authorinada-n <inada-n@hornet.(none)>2009-07-13 14:40:02 +0900
committerinada-n <inada-n@hornet.(none)>2009-07-13 14:40:02 +0900
commit63a507a123396191c0867ebfa09e9bdfd09b3da4 (patch)
treed670bde34063d9ad7379d0eac1577bb4fb3d5e85 /python/test/test_pack.py
parent661f27348188d15e841467ececd75e27cd77980b (diff)
parent294e3fe7ab01ef9273b364b0d3d9df4e9b275158 (diff)
downloadmsgpack-python-63a507a123396191c0867ebfa09e9bdfd09b3da4.tar.gz
merge python binding from bzr.
Diffstat (limited to 'python/test/test_pack.py')
-rw-r--r--python/test/test_pack.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/python/test/test_pack.py b/python/test/test_pack.py
new file mode 100644
index 0000000..86badb5
--- /dev/null
+++ b/python/test/test_pack.py
@@ -0,0 +1,28 @@
+#!/usr/bin/env python
+# coding: utf-8
+
+from nose import main
+from nose.tools import *
+
+from msgpack import packs, unpacks
+
+def check(data):
+ re = unpacks(packs(data))
+ assert_equal(re, data)
+
+def testPack():
+ test_data = [
+ 0, 1, 127, 128, 255, 256, 65535, 65536,
+ -1, -32, -33, -128, -129, -32768, -32769,
+ 1.0,
+ "", "a", "a"*31, "a"*32,
+ None, True, False,
+ [], [[]], [[], None],
+ {None: 0},
+ (1<<23),
+ ]
+ for td in test_data:
+ check(td)
+
+if __name__ == '__main__':
+ main()