call site 16 for path.svnwc.dirpath
path/svn/testing/test_wccommand.py - line 33
31
32
33
34
35
   def test_move_file(self):  # overrides base class
       try:
->         super(TestWCSvnCommandPath, self).test_move_file()
       finally:
           self.root.revert(rec=1)
path/testing/fscommon.py - line 206
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()