summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_case.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_case.py b/test/test_case.py
index a08c6ce..1cbc494 100644
--- a/test/test_case.py
+++ b/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()