(self)
| 306 | |
| 307 | @os_helper.skip_unless_symlink |
| 308 | def test_samestat_on_symlink(self): |
| 309 | self._test_samestat_on_link_func(os.symlink) |
| 310 | |
| 311 | @unittest.skipUnless(hasattr(os, 'link'), 'requires os.link') |
| 312 | def test_samestat_on_link(self): |
nothing calls this directly
no test coverage detected