call site 13 for path.svnurl.check
path/testing/common.py - line 202
201
202
203
   def test_contains_path_with_basename(self):
->     assert 'samplefile' in self.root
       assert 'not_existing' not in self.root
path/common.py - line 122
120
121
122
123
124
125
126
127
   def __contains__(self, other):
       if isinstance(other, str):
->         return self.join(other).check()
       else:
           if other.dirpath() != self:
               return False
           p = self.join(other.basename)
           return p.check()