(self, path1)
| 1503 | assert oldstat.mode == newstat.mode |
| 1504 | |
| 1505 | def test_chown_identity(self, path1): |
| 1506 | owner = path1.stat().owner |
| 1507 | group = path1.stat().group |
| 1508 | path1.chown(owner, group) |
| 1509 | |
| 1510 | def test_chown_dangling_link(self, path1): |
| 1511 | owner = path1.stat().owner |