(self)
| 263 | |
| 264 | @os_helper.skip_unless_symlink |
| 265 | def test_samefile_on_symlink(self): |
| 266 | self._test_samefile_on_link_func(os.symlink) |
| 267 | |
| 268 | @unittest.skipUnless(hasattr(os, 'link'), 'requires os.link') |
| 269 | def test_samefile_on_link(self): |
nothing calls this directly
no test coverage detected