(self)
| 2598 | |
| 2599 | @needs_symlinks |
| 2600 | def test_lstat(self): |
| 2601 | p = self.cls(self.base)/ 'linkA' |
| 2602 | st = p.stat() |
| 2603 | self.assertNotEqual(st, p.lstat()) |
| 2604 | |
| 2605 | def test_lstat_nosymlink(self): |
| 2606 | p = self.cls(self.base) / 'fileA' |
nothing calls this directly
no test coverage detected