(self)
| 267 | |
| 268 | @unittest.skipUnless(hasattr(os, 'link'), 'requires os.link') |
| 269 | def test_samefile_on_link(self): |
| 270 | try: |
| 271 | self._test_samefile_on_link_func(os.link) |
| 272 | except PermissionError as e: |
| 273 | self.skipTest('os.link(): %s' % e) |
| 274 | |
| 275 | def test_samestat(self): |
| 276 | test_fn1 = os_helper.TESTFN |
nothing calls this directly
no test coverage detected