summaryrefslogtreecommitdiff
path: root/test/test_pack.py
diff options
context:
space:
mode:
authorNaoki INADA <inada-n@eagle>2009-06-29 09:31:43 +0900
committerNaoki INADA <inada-n@eagle>2009-06-29 09:31:43 +0900
commitca0bda01f116f04f98009f13e1bc9def8200cbb6 (patch)
treeaa76dd9da151dacc36ac2eb4035ff620d7f07b94 /test/test_pack.py
parent3a6f6626ebf42aae84bfe9a7803bd8ab81185be4 (diff)
downloadmsgpack-python-ca0bda01f116f04f98009f13e1bc9def8200cbb6.tar.gz
Add some test cases.
Diffstat (limited to 'test/test_pack.py')
-rw-r--r--test/test_pack.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/test_pack.py b/test/test_pack.py
new file mode 100644
index 0000000..86badb5
--- /dev/null
+++ b/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()