(self)
| 185 | tearDown = setUp |
| 186 | |
| 187 | def test_access(self): |
| 188 | f = os.open(os_helper.TESTFN, os.O_CREAT|os.O_RDWR) |
| 189 | os.close(f) |
| 190 | self.assertTrue(os.access(os_helper.TESTFN, os.W_OK)) |
| 191 | |
| 192 | @unittest.skipIf( |
| 193 | support.is_wasi, "WASI does not support dup." |
nothing calls this directly
no test coverage detected