diff options
| author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-20 08:09:39 (GMT) |
|---|---|---|
| committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-20 08:09:39 (GMT) |
| commit | 4cc80ca921b4f6bce11bd7eec8bc6b561aa9f524 (patch) | |
| tree | 9951e02d8dec6e305ab5fa184b93c9d0e534eea5 /Lib/test/test_ntpath.py | |
| parent | 61afd2694bf6bff8c65a392aaf27c575d92b7eb9 (diff) | |
| download | cpython-4cc80ca921b4f6bce11bd7eec8bc6b561aa9f524.zip cpython-4cc80ca921b4f6bce11bd7eec8bc6b561aa9f524.tar.gz cpython-4cc80ca921b4f6bce11bd7eec8bc6b561aa9f524.tar.bz2 | |
#3426: os.path.abspath now returns unicode when its arg is unicode.
Diffstat (limited to 'Lib/test/test_ntpath.py')
| -rw-r--r-- | Lib/test/test_ntpath.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Lib/test/test_ntpath.py b/Lib/test/test_ntpath.py index 9e9b6ed..f5bc952 100644 --- a/Lib/test/test_ntpath.py +++ b/Lib/test/test_ntpath.py @@ -160,13 +160,25 @@ class TestNtpath(unittest.TestCase): # the rest of the tests for the ntpath module to be run to completion # on any platform, since most of the module is intended to be usable # from any platform. + # XXX this needs more tests try: import nt except ImportError: - pass + # check that the function is there even if we are not on Windows + ntpath.abspath else: tester('ntpath.abspath("C:\\")', "C:\\") + # 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(ntpath.abspath(path), str) + for upath in (u'', u'fuu', u'f\xf9\xf9', u'/fuu', u'U:\\'): + self.assertIsInstance(ntpath.abspath(upath), unicode) + + def test_relpath(self): currentdir = os.path.split(os.getcwd())[-1] tester('ntpath.relpath("a")', 'a') |
