(self)
| 1080 | self.check_chmod(posix.chmod, os_helper.TESTFN) |
| 1081 | |
| 1082 | def tempdir(self): |
| 1083 | target = os_helper.TESTFN + 'd' |
| 1084 | posix.mkdir(target) |
| 1085 | self.addCleanup(posix.rmdir, target) |
| 1086 | return target |
| 1087 | |
| 1088 | @os_helper.skip_unless_working_chmod |
| 1089 | def test_chmod_dir(self): |
no test coverage detected