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