1054
class TestNoFinalPath(script.TestCaseWithTransportAndScript):
1056
def test_bug_805809(self):
1059
Created a standalone tree (format: 2a)
1064
$ bzr commit -m 'create file on trunk'
1065
2>Committing to: .../trunk/
1067
2>Committed revision 1.
1068
# Create a debian branch based on trunk
1070
$ bzr branch trunk -r 1 debian
1071
2>Branched 1 revision(s).
1078
$ bzr commit -m 'rename file to dir/file for debian'
1079
2>Committing to: .../debian/
1081
2>renamed file => dir/file
1082
2>Committed revision 2.
1083
# Create an experimental branch with a new root-id
1085
$ bzr init experimental
1086
Created a standalone tree (format: 2a)
1088
# merge debian even without a common ancestor
1089
$ bzr merge ../debian -r0..2
1092
2>All changes applied successfully.
1093
$ bzr commit -m 'merging debian into experimental'
1094
2>Committing to: .../experimental/
1097
2>Committed revision 1.
1098
# Create an ubuntu branch with yet another root-id
1101
Created a standalone tree (format: 2a)
1104
$ bzr merge ../debian -r0..2
1107
2>All changes applied successfully.
1108
$ bzr commit -m 'merging debian'
1109
2>Committing to: .../ubuntu/
1112
2>Committed revision 1.
1113
# Now try to merge experimental
1114
$ bzr merge ../experimental
1115
2>Path conflict: dir / dir
1116
2>1 conflicts encountered.
1054
1120
class TestResolveActionOption(tests.TestCase):
1056
1122
def setUp(self):