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