| 173 |
| 174 |
| 175 |
| 176 |
| 177 |
| 178 |
| 179 |
| 180 | |
def test_nonversioned_remove(self): |
assert self.root.check(versioned=1) |
somefile = self.root.join('nonversioned/somefile') |
nonwc = py.path.local(somefile) |
nonwc.ensure() |
assert somefile.check() |
assert not somefile.check(versioned=True) |
-> somefile.remove() | |