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