(self)
| 984 | |
| 985 | @unittest.skipUnless(hasattr(posix, 'access'), 'test needs posix.access()') |
| 986 | def test_access(self): |
| 987 | self.assertTrue(posix.access(os_helper.TESTFN, os.R_OK)) |
| 988 | |
| 989 | @unittest.skipUnless(hasattr(posix, 'umask'), 'test needs posix.umask()') |
| 990 | def test_umask(self): |
nothing calls this directly
no test coverage detected