call site 5 for path.svnwc.status
path/svn/testing/test_wccommand.py - line 52
43
44
45
46
47
48
49
50
51
52
53
   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'))
path/svn/testing/test_wccommand.py - line 45
44
45
46
47
48
49
   def assert_nochange(p):
->     s = p.status()
       assert not s.modified
       assert not s.prop_modified
       assert not s.added
       assert not s.deleted