diff options
author | INADA Naoki <songofacandy@gmail.com> | 2010-09-02 02:16:28 +0900 |
---|---|---|
committer | INADA Naoki <songofacandy@gmail.com> | 2010-09-02 02:16:28 +0900 |
commit | 039542ebcb8ca923c4414a414ecd62df43ff3f24 (patch) | |
tree | f83d588c3b227b1f55874bbd63d3e68c19799b26 /test3/test_pack.py | |
parent | 1e8eeb8ebed50e8d39c69be653df06a10730631e (diff) | |
download | msgpack-python-039542ebcb8ca923c4414a414ecd62df43ff3f24.tar.gz |
python: Add test for python3 and fix found problems.
Diffstat (limited to 'test3/test_pack.py')
-rw-r--r-- | test3/test_pack.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test3/test_pack.py b/test3/test_pack.py new file mode 100644 index 0000000..c861704 --- /dev/null +++ b/test3/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, + b"", b"a", b"a"*31, b"a"*32, + None, True, False, + (), ((),), ((), None,), + {None: 0}, + (1<<23), + ] + for td in test_data: + check(td) + +if __name__ == '__main__': + main() |