call site 19 for path.svnwc.join
path/svn/testing/test_wccommand.py - line 39
29
30
31
32
33
34
35
36
37
38
39
   def test_status_attributes_simple(self):
       def assert_nochange(p):
           s = p.status()
           assert not s.modified
           assert not s.prop_modified
           assert not s.added
           assert not s.deleted
   
       dpath = self.root.join('sampledir')
       assert_nochange(self.root.join('sampledir'))
->     assert_nochange(self.root.join('samplefile'))