(self)
| 257 | |
| 258 | @os_helper.skip_unless_symlink |
| 259 | def test_samefile_on_symlink(self): |
| 260 | self._test_samefile_on_link_func(os.symlink) |
| 261 | |
| 262 | @unittest.skipUnless(hasattr(os, 'link'), 'requires os.link') |
| 263 | def test_samefile_on_link(self): |
nothing calls this directly
no test coverage detected