Add unicode testcase for Python2.

This commit is contained in:
INADA Naoki 2010-10-07 03:07:52 +09:00
parent 8467307239
commit aa2a3e5b07

View File

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