summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorBarney Gale <barney.gale@gmail.com>2021-05-20 16:41:33 (GMT)
committerGitHub <noreply@github.com>2021-05-20 16:41:33 (GMT)
commit18f41c04ff4161531f4d08631059fd3ed37c0218 (patch)
tree12788d81997d3be0212cec17149735396d6377a4 /Lib/test
parent7109624d45bcf28fbb46a53354785dc5ff953a16 (diff)
downloadcpython-18f41c04ff4161531f4d08631059fd3ed37c0218.zip
cpython-18f41c04ff4161531f4d08631059fd3ed37c0218.tar.gz
cpython-18f41c04ff4161531f4d08631059fd3ed37c0218.tar.bz2
bpo-38671: Add test that `pathlib.Path.resolve()` returns an absolute path. (GH-26184)
Issue should be fixed in bpo-43757 Co-Authored-by: Tzu-ping Chung <uranusjr@gmail.com>
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_pathlib.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/Lib/test/test_pathlib.py b/Lib/test/test_pathlib.py
index 55d63d5..54b7977 100644
--- a/Lib/test/test_pathlib.py
+++ b/Lib/test/test_pathlib.py
@@ -1799,6 +1799,16 @@ class _BasePathTest(object):
# Non-strict
self.assertEqual(r.resolve(strict=False), p / '3' / '4')
+ def test_resolve_nonexist_relative_issue38671(self):
+ p = self.cls('non', 'exist')
+
+ old_cwd = os.getcwd()
+ os.chdir(BASE)
+ try:
+ self.assertEqual(p.resolve(), self.cls(BASE, p))
+ finally:
+ os.chdir(old_cwd)
+
def test_with(self):
p = self.cls(BASE)
it = p.iterdir()