call site 9 for path.svnwc.check
path/svn/testing/test_wccommand.py - line 25
23
24
25
26
27
   def test_move_directory(self): # overrides base class
       try:
->         super(TestWCSvnCommandPath, self).test_move_directory()
       finally:
           self.root.revert(rec=1)
path/testing/fscommon.py - line 217
211
212
213
214
215
216
217
   def test_move_directory(self):
       source = self.root.join('sampledir') 
       dest = self.root.join('moveddir') 
       source.move(dest)
       assert dest.check(dir=1)
       assert dest.join('otherfile').check(file=1) 
->     assert not source.join('sampledir').check()