diff options
| author | Tomaz Solc <avian@toybox.zemanta.com> | 2009-01-21 10:51:53 +0100 |
|---|---|---|
| committer | Tomaz Solc <avian@toybox.zemanta.com> | 2009-01-21 10:51:53 +0100 |
| commit | 9b254a2dbd24146e266e61386b0cfafd29cc532e (patch) | |
| tree | a3171e6af4e5d238531771dd96c7130b2093914e | |
| parent | 681801103d47231c38290bb6a19c6d811bb2fabd (diff) | |
| download | unidecode-9b254a2dbd24146e266e61386b0cfafd29cc532e.tar.gz | |
One more unit test
| -rw-r--r-- | tests/basic.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/basic.py b/tests/basic.py index 3b27e4d..b4f27b0 100644 --- a/tests/basic.py +++ b/tests/basic.py @@ -35,6 +35,9 @@ class TestUnidecode(unittest.TestCase): (u'vi\xf1edos', "vinedos"), + + (u"\u5317\u4EB0", + "Bei Jing "), ] for input, output in TESTS: |
