call site 6 for path.svnwc.check
path/svn/testing/test_wccommand.py - line 150
146
147
148
149
150
151
152
153
154
155
156
157
   def test_versioned(self):
       assert self.root.check(versioned=1)
       # TODO: Why does my copy of svn think .svn is versioned?
       #assert self.root.join('.svn').check(versioned=0) 
->     assert self.root.join('samplefile').check(versioned=1)
       assert not self.root.join('notexisting').check(versioned=1)
       notexisting = self.root.join('hello').localpath
       try:
           notexisting.write("")
           assert self.root.join('hello').check(versioned=0)
       finally:
           notexisting.remove()