(self)
| 1098 | |
| 1099 | @unittest.skipUnless(hasattr(posix, 'lchmod'), 'test needs os.lchmod()') |
| 1100 | def test_lchmod_file(self): |
| 1101 | self.check_chmod(posix.lchmod, os_helper.TESTFN) |
| 1102 | self.check_chmod(posix.chmod, os_helper.TESTFN, follow_symlinks=False) |
| 1103 | |
| 1104 | @unittest.skipUnless(hasattr(posix, 'lchmod'), 'test needs os.lchmod()') |
| 1105 | def test_lchmod_dir(self): |
nothing calls this directly
no test coverage detected