(self)
| 1020 | self.check_chmod(posix.chmod, os_helper.TESTFN) |
| 1021 | |
| 1022 | def tempdir(self): |
| 1023 | target = os_helper.TESTFN + 'd' |
| 1024 | posix.mkdir(target) |
| 1025 | self.addCleanup(posix.rmdir, target) |
| 1026 | return target |
| 1027 | |
| 1028 | @os_helper.skip_unless_working_chmod |
| 1029 | def test_chmod_dir(self): |
no test coverage detected