call site 6 for path.svnwc.write
path/svn/testing/test_wccommand.py - line 83
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
   def test_status_added_ondirectory(self):
       sampledir = self.root.join('sampledir')
       try:
           t2 = sampledir.mkdir('t2')
           t1 = t2.join('t1')
->         t1.write('test')
           t1.add()
           s = sampledir.status(rec=1)
           # Comparing just the file names, because paths are unpredictable
           # on Windows. (long vs. 8.3 paths)
           assert t1.basename in [item.basename for item in s.added]
           assert t2.basename in [item.basename for item in s.added]
       finally:
           t2.revert(rec=1)
           t2.localpath.remove(rec=1)