(self)
| 310 | |
| 311 | @unittest.skipUnless(hasattr(os, 'link'), 'requires os.link') |
| 312 | def test_samestat_on_link(self): |
| 313 | try: |
| 314 | self._test_samestat_on_link_func(os.link) |
| 315 | except PermissionError as e: |
| 316 | self.skipTest('os.link(): %s' % e) |
| 317 | |
| 318 | def test_sameopenfile(self): |
| 319 | filename = os_helper.TESTFN |
nothing calls this directly
no test coverage detected