summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_genericpath.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-02-20 22:34:21 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-02-20 22:34:21 (GMT)
commit9e9af21d45e8f5c9debd799fd521a87b0d97c698 (patch)
tree1f08df7914d1f2d817c2c7916537d4dda5465eda /Lib/test/test_genericpath.py
parent18d5a6966980387051e5c1012d9a87a46eda3d34 (diff)
downloadcpython-9e9af21d45e8f5c9debd799fd521a87b0d97c698.zip
cpython-9e9af21d45e8f5c9debd799fd521a87b0d97c698.tar.gz
cpython-9e9af21d45e8f5c9debd799fd521a87b0d97c698.tar.bz2
skip tests with a non-ascii cwd when the file system encoding is ascii
Diffstat (limited to 'Lib/test/test_genericpath.py')
-rw-r--r--Lib/test/test_genericpath.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/Lib/test/test_genericpath.py b/Lib/test/test_genericpath.py
index bfd38d9..15f12e4 100644
--- a/Lib/test/test_genericpath.py
+++ b/Lib/test/test_genericpath.py
@@ -174,6 +174,19 @@ class AllCommonTest(unittest.TestCase):
self.assertRaises(TypeError, genericpath.samefile)
+
+# XXX at some point this should probably go in some class that contains common
+# tests for all test_*path modules.
+def _issue3426(self, cwd, abspath):
+ # Issue 3426: check that abspath retuns unicode when the arg is unicode
+ # and str when it's str, with both ASCII and non-ASCII cwds
+ with test_support.temp_cwd(cwd):
+ for path in ('', 'foo', 'f\xf2\xf2', '/foo', 'C:\\'):
+ self.assertIsInstance(abspath(path), str)
+ for upath in (u'', u'fuu', u'f\xf9\xf9', u'/fuu', u'U:\\'):
+ self.assertIsInstance(abspath(upath), unicode)
+
+
def test_main():
test_support.run_unittest(AllCommonTest)