(self)
| 304 | |
| 305 | @unittest.skipUnless(hasattr(os, 'link'), 'requires os.link') |
| 306 | def test_samestat_on_link(self): |
| 307 | try: |
| 308 | self._test_samestat_on_link_func(os.link) |
| 309 | except PermissionError as e: |
| 310 | self.skipTest('os.link(): %s' % e) |
| 311 | |
| 312 | def test_sameopenfile(self): |
| 313 | filename = os_helper.TESTFN |
nothing calls this directly
no test coverage detected