call site 7 for path.svnwc.status
path/svn/testing/test_wccommand.py - line 46
41
42
43
44
45
46
47
48
49
50
51
   def test_status_added(self):
       nf = self.root.join('newfile')
       nf.write('hello')
       nf.add()
       try:
->         s = nf.status()
           assert s.added
           assert not s.modified
           assert not s.prop_modified
       finally:
           nf.revert()