~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Robert Collins
  • Date: 2006-03-05 02:20:07 UTC
  • mto: This revision was merged to the branch mainline in revision 1590.
  • Revision ID: robertc@robertcollins.net-20060305022007-53e5907d083453e8
Local commits appear to be working properly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
        os.chdir('base')
139
139
        open('a', 'wb').write('new base contents\n')
140
140
        bzr('commit', '-m', 'base')
 
141
        self.check_revno(2)
141
142
 
142
143
        os.chdir('../child')
 
144
        self.check_revno(1)
143
145
        open('b', 'wb').write('new b child contents\n')
144
146
        bzr('commit', '-m', 'child', retcode=3)
 
147
        self.check_revno(1)
145
148
 
146
149
        bzr('update')
147
150
        self.check_revno(2)