89
91
file('hello', 'w').write('hello world')
92
94
file_id = wt.path2id('hello')
94
96
file('hello', 'w').write('version 2')
101
102
eq(rev.message, 'add hello')
105
106
text = tree1.get_file_text(file_id)
107
108
self.assertEqual('hello world', text)
111
112
text = tree2.get_file_text(file_id)