diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-03-11 23:08:11 +0200 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-03-11 23:08:11 +0200 |
commit | d0e9b6919f5764c20dfeae720b28e80652ddb00e (patch) | |
tree | cbf8f6e2cc4bd51b13f72ae33f334fae6d09c7fc /Lib/test/test_pathlib.py | |
parent | a55553d7e3f86d5f2475720823ec2ac7f944e3e6 (diff) | |
parent | 04d4229719055c9536da6d4b58033981ef86d0d2 (diff) | |
download | cpython-git-d0e9b6919f5764c20dfeae720b28e80652ddb00e.tar.gz |
Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise
NotImplementedError instead of ImportError.
Diffstat (limited to 'Lib/test/test_pathlib.py')
-rw-r--r-- | Lib/test/test_pathlib.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/test/test_pathlib.py b/Lib/test/test_pathlib.py index 9a98d46c4e..451e41f5ff 100644 --- a/Lib/test/test_pathlib.py +++ b/Lib/test/test_pathlib.py @@ -1156,6 +1156,15 @@ class PureWindowsPathTest(_BasePurePathTest, unittest.TestCase): # UNC paths are never reserved self.assertIs(False, P('//my/share/nul/con/aux').is_reserved()) + def test_owner(self): + P = self.cls + with self.assertRaises(NotImplementedError): + P('c:/').owner() + + def test_group(self): + P = self.cls + with self.assertRaises(NotImplementedError): + P('c:/').group() class PurePathTest(_BasePurePathTest, unittest.TestCase): cls = pathlib.PurePath |