198
198
# commit from here should do nothing
199
199
run_bzr('commit', '.', '-m', 'commit subdir only', '--unchanged')
201
201
eq(v3.get_file_by_path('b/two').read(), 'old contents')
202
202
eq(v3.get_file_by_path('top').read(), 'old contents')
203
203
eq(v3.get_file_by_path('a/one').read(), 'new contents')
205
205
# commit in subdirectory commits whole tree
206
206
run_bzr('commit', '-m', 'commit whole tree from subdir')
208
208
eq(v4.get_file_by_path('b/two').read(), 'new contents')
209
209
eq(v4.get_file_by_path('top').read(), 'new contents')