diff options
| author | INADA Naoki <songofacandy@gmail.com> | 2010-10-07 03:04:00 +0900 |
|---|---|---|
| committer | INADA Naoki <songofacandy@gmail.com> | 2010-10-07 03:04:00 +0900 |
| commit | 84673072396650520e24b5a770c11aa777f69557 (patch) | |
| tree | 7bf5d7c2eb1d280b89597e0f1912546fd7d92224 /python/test3 | |
| parent | 90da951a6f385b9860df1bdf4504e534e2a00397 (diff) | |
| download | msgpack-python-84673072396650520e24b5a770c11aa777f69557.tar.gz | |
Fix testcase for unicode.
Diffstat (limited to 'python/test3')
| -rw-r--r-- | python/test3/test_case.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/test3/test_case.py b/python/test3/test_case.py index 53dfcaf..2f42316 100644 --- a/python/test3/test_case.py +++ b/python/test3/test_case.py @@ -98,5 +98,8 @@ def test_match(): for v, p in cases: match(v, p) +def test_unicode(): + assert_equal(b'foobar', unpacks(packs('foobar'))) + if __name__ == '__main__': main() |
