diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-20 22:34:21 +0000 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-20 22:34:21 +0000 |
commit | 9e9af21d45e8f5c9debd799fd521a87b0d97c698 (patch) | |
tree | 1f08df7914d1f2d817c2c7916537d4dda5465eda /Lib/test/test_macpath.py | |
parent | 18d5a6966980387051e5c1012d9a87a46eda3d34 (diff) | |
download | cpython-git-9e9af21d45e8f5c9debd799fd521a87b0d97c698.tar.gz |
skip tests with a non-ascii cwd when the file system encoding is ascii
Diffstat (limited to 'Lib/test/test_macpath.py')
-rw-r--r-- | Lib/test/test_macpath.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/Lib/test/test_macpath.py b/Lib/test/test_macpath.py index c93177fe36..f477ddb42b 100644 --- a/Lib/test/test_macpath.py +++ b/Lib/test/test_macpath.py @@ -1,6 +1,7 @@ import macpath from test import test_support import unittest +import test_genericpath class MacPathTestCase(unittest.TestCase): @@ -8,15 +9,11 @@ class MacPathTestCase(unittest.TestCase): def test_abspath(self): self.assertEqual(macpath.abspath("xx:yy"), "xx:yy") - # 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 - for cwd in (u'cwd', u'\xe7w\xf0'): - with test_support.temp_cwd(cwd): - for path in ('', 'foo', 'f\xf2\xf2', '/foo', 'C:\\'): - self.assertIsInstance(macpath.abspath(path), str) - for upath in (u'', u'fuu', u'f\xf9\xf9', u'/fuu', u'U:\\'): - self.assertIsInstance(macpath.abspath(upath), unicode) + def test_abspath_with_ascii_cwd(self): + test_genericpath._issue3426(self, u'cwd', macpath.abspath) + def test_abspath_with_nonascii_cwd(self): + test_genericpath._issue3426(self, u'\xe7w\xf0', macpath.abspath) def test_isabs(self): isabs = macpath.isabs |