call site 0 for path.local.move
path/testing/fscommon.py - line 207
204
205
206
207
208
209
   def test_move_file(self):
       p = self.root.join('samplefile')
       newp = p.dirpath('moved_samplefile')
->     p.move(newp)
       assert newp.check(file=1)
       assert not p.check()