python: Add test for python3 and fix found problems.

This commit is contained in:
INADA Naoki
2010-09-02 02:16:28 +09:00
parent 2146f5f623
commit 8d0d2bd3fc
6 changed files with 266 additions and 9 deletions

28
python/test3/test_pack.py Normal file
View File

@@ -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()