diff options
author | Guido van Rossum <guido@dropbox.com> | 2016-01-06 11:03:47 -0800 |
---|---|---|
committer | Guido van Rossum <guido@dropbox.com> | 2016-01-06 11:03:47 -0800 |
commit | 483397a235630385c893941fee76379041612ee5 (patch) | |
tree | ac0856036c33dbc31ae00ce41f92aad431269ecd /Lib/test/test_pathlib.py | |
parent | e630b6818f28b6c4f8845fbaf2d115bbc3f2b733 (diff) | |
parent | 1a4afec0d66d8843834250836d1056ed6d687385 (diff) | |
download | cpython-git-483397a235630385c893941fee76379041612ee5.tar.gz |
Issue #22570: Add 'path' attribute to pathlib.Path objects. (Merge 3.5->3.6)
Diffstat (limited to 'Lib/test/test_pathlib.py')
-rw-r--r-- | Lib/test/test_pathlib.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Lib/test/test_pathlib.py b/Lib/test/test_pathlib.py index bf77277e67..bfdafe39d4 100644 --- a/Lib/test/test_pathlib.py +++ b/Lib/test/test_pathlib.py @@ -477,6 +477,22 @@ class _BasePurePathTest(object): self.assertEqual(P('a/b.py').name, 'b.py') self.assertEqual(P('/a/b.py').name, 'b.py') + def test_path_common(self): + P = self.cls + def check(arg, expected=None): + if expected is None: + expected = arg + self.assertEqual(P(arg).path, expected.replace('/', self.sep)) + check('', '.') + check('.') + check('/') + check('a/b') + check('/a/b') + check('/a/b/', '/a/b') + check('/a/b/.', '/a/b') + check('a/b.py') + check('/a/b.py') + def test_suffix_common(self): P = self.cls self.assertEqual(P('').suffix, '') @@ -899,6 +915,17 @@ class PureWindowsPathTest(_BasePurePathTest, unittest.TestCase): self.assertEqual(P('//My.py/Share.php').name, '') self.assertEqual(P('//My.py/Share.php/a/b').name, 'b') + def test_path(self): + P = self.cls + self.assertEqual(P('c:').path, 'c:') + self.assertEqual(P('c:/').path, 'c:\\') + self.assertEqual(P('c:a/b').path, 'c:a\\b') + self.assertEqual(P('c:/a/b').path, 'c:\\a\\b') + self.assertEqual(P('c:a/b.py').path, 'c:a\\b.py') + self.assertEqual(P('c:/a/b.py').path, 'c:\\a\\b.py') + self.assertEqual(P('//My.py/Share.php').path, '\\\\My.py\\Share.php\\') + self.assertEqual(P('//My.py/Share.php/a/b').path, '\\\\My.py\\Share.php\\a\\b') + def test_suffix(self): P = self.cls self.assertEqual(P('c:').suffix, '') |