(self)
| 300 | |
| 301 | @os_helper.skip_unless_symlink |
| 302 | def test_samestat_on_symlink(self): |
| 303 | self._test_samestat_on_link_func(os.symlink) |
| 304 | |
| 305 | @unittest.skipUnless(hasattr(os, 'link'), 'requires os.link') |
| 306 | def test_samestat_on_link(self): |
nothing calls this directly
no test coverage detected