(self)
| 261 | |
| 262 | @unittest.skipUnless(hasattr(os, 'link'), 'requires os.link') |
| 263 | def test_samefile_on_link(self): |
| 264 | try: |
| 265 | self._test_samefile_on_link_func(os.link) |
| 266 | except PermissionError as e: |
| 267 | self.skipTest('os.link(): %s' % e) |
| 268 | |
| 269 | def test_samestat(self): |
| 270 | test_fn1 = os_helper.TESTFN |
nothing calls this directly
no test coverage detected