summaryrefslogtreecommitdiff
path: root/fs/tests/test_errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'fs/tests/test_errors.py')
-rw-r--r--fs/tests/test_errors.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/tests/test_errors.py b/fs/tests/test_errors.py
index 2b2fa64..51d0262 100644
--- a/fs/tests/test_errors.py
+++ b/fs/tests/test_errors.py
@@ -1,3 +1,4 @@
+# -*- encoding: utf-8 -*-
"""
fs.tests.test_errors: testcases for the fs error classes functions
@@ -24,3 +25,8 @@ class TestErrorPickling(unittest.TestCase):
assert_dump_load(UnsupportedError("makepony"))
+class TestFSError(unittest.TestCase):
+
+ def test_unicode_representation_of_error_with_non_ascii_characters(self):
+ path_error = PathError('/Shïrê/Frødø')
+ _ = unicode(path_error) \ No newline at end of file