~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_conflicts.py

  • Committer: Vincent Ladeuil
  • Date: 2011-01-15 17:31:18 UTC
  • mto: (5609.2.3 2.3)
  • mto: This revision was merged to the branch mainline in revision 5615.
  • Revision ID: v.ladeuil+lp@free.fr-20110115173118-q4zvvv1c96o7ndni
Get rid of the shell-like script, the more specific tests are in place and easier to use foe debugging purposes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1028
1028
2>bzr: ERROR: Tree transform is malformed [('unversioned executability', 'new-1')]
1029
1029
""")
1030
1030
 
1031
 
    def test_bug_660935(self):
1032
 
        self.run_script("""
1033
 
$ bzr init trunk
1034
 
Created a standalone tree (format: 2a)
1035
 
$ cd trunk
1036
 
$ mkdir src
1037
 
$ echo trunk > src/file
1038
 
$ bzr add
1039
 
adding src
1040
 
adding src/file
1041
 
$ bzr commit -m 'create file on trunk'
1042
 
2>Committing to: .../trunk/
1043
 
2>added src
1044
 
2>added src/file
1045
 
2>Committed revision 1.
1046
 
$ cd ..
1047
 
$ bzr branch trunk featureA
1048
 
2>Branched 1 revision(s).
1049
 
$ cd featureA
1050
 
$ echo featureA > src/file
1051
 
$ bzr commit -m 'modify file for featureA'
1052
 
2>Committing to: .../featureA/
1053
 
2>modified src/file
1054
 
2>Committed revision 2.
1055
 
$ cd ..
1056
 
$ cd trunk
1057
 
$ bzr rm src/file
1058
 
2>deleted src/file
1059
 
$ bzr commit -m 'Delete file'
1060
 
2>Committing to: .../trunk/
1061
 
2>deleted src/file
1062
 
2>Committed revision 2.
1063
 
$ cd ../featureA
1064
 
$ bzr merge ../trunk
1065
 
2>RM  src/file => src/file.THIS
1066
 
2>Contents conflict in src/file
1067
 
2>1 conflicts encountered.
1068
 
$ bzr conflicts
1069
 
Contents conflict in src/file
1070
 
$ bzr resolve --take-other
1071
 
""")
1072
 
 
1073
1031
 
1074
1032
class TestResolveActionOption(tests.TestCase):
1075
1033