182
182
# commit from here should do nothing
183
183
run_bzr('commit', '.', '-m', 'commit subdir only', '--unchanged')
185
185
eq(v3.get_file_by_path('b/two').read(), 'old contents')
186
186
eq(v3.get_file_by_path('top').read(), 'old contents')
187
187
eq(v3.get_file_by_path('a/one').read(), 'new contents')
189
189
# commit in subdirectory commits whole tree
190
190
run_bzr('commit', '-m', 'commit whole tree from subdir')
192
192
eq(v4.get_file_by_path('b/two').read(), 'new contents')
193
193
eq(v4.get_file_by_path('top').read(), 'new contents')