call site 9 for path.svnwc.add
path/svn/testing/test_wccommand.py - line 58
55
56
57
58
59
60
61
62
63
64
65
   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()