~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_log.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-10-16 10:03:21 UTC
  • mfrom: (1988.4.6 dotted-revno-input.)
  • Revision ID: pqm@pqm.ubuntu.com-20061016100321-c4951c9fc020dbd0
(Robert Collins) Output dotted decimal revision numbers during log, and accept them as revision specifiers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
#message:
137
137
#  merge branch 1
138
138
#    ------------------------------------------------------------
 
139
#    revno: 1.1.2  
139
140
#    merged: foo@example.com-20060328113140-91f43cfb46dc2863
140
141
#    committer: Robert Collins <foo@example.com>
141
142
#    branch nick: child
143
144
#    message:
144
145
#      merge branch 2
145
146
#        ------------------------------------------------------------
 
147
#        revno: 1.1.1.1
146
148
#        merged: foo@example.com-20060328113140-1ba24f850a0ef573
147
149
#        committer: Robert Collins <foo@example.com>
148
150
#        branch nick: smallerchild
150
152
#        message:
151
153
#          branch 2
152
154
#    ------------------------------------------------------------
 
155
#    revno: 1.1.1
153
156
#    merged: foo@example.com-20060328113140-5749a4757a8ac792
154
157
#    committer: Robert Collins <foo@example.com>
155
158
#    branch nick: child
165
168
#  first post
166
169
#""", out)
167
170
        # but we dont have a nice pattern matcher hooked up yet, so:
168
 
        # we check for the indenting of the commit message:
 
171
        # we check for the indenting of the commit message and the 
 
172
        # revision numbers 
 
173
        self.assertTrue('revno: 2' in out)
169
174
        self.assertTrue('  merge branch 1' in out)
 
175
        self.assertTrue('    revno: 1.1.2' in out)
170
176
        self.assertTrue('      merge branch 2' in out)
 
177
        self.assertTrue('        revno: 1.1.1.1' in out)
171
178
        self.assertTrue('          branch 2' in out)
 
179
        self.assertTrue('    revno: 1.1.1' in out)
172
180
        self.assertTrue('      branch 1' in out)
 
181
        self.assertTrue('revno: 1' in out)
173
182
        self.assertTrue('  first post' in out)
174
183
        self.assertEqual('', err)
175
184