~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 11:48:54 UTC
  • mto: This revision was merged to the branch mainline in revision 1590.
  • Revision ID: robertc@robertcollins.net-20060305114854-d95dbe4adfee32e9
Make bound branch creation happen via 'checkout'

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
 
74
74
        os.chdir('..')
75
75
 
76
 
        bzr('get', '--bound', 'base', 'child')
 
76
        bzr('checkout', 'base', 'child')
77
77
 
78
78
        self.failUnlessExists('child')
79
79
 
281
281
 
282
282
        os.chdir('../child')
283
283
        self.check_revno(2)
284
 
        bzr('bind')
 
284
        bzr('bind', '../base')
285
285
        self.check_revno(5)
286
286
 
287
287
    def test_bind_child_ahead(self):
305
305
        self.check_revno(5)
306
306
 
307
307
        self.check_revno(2, '../base')
308
 
        bzr('bind')
 
308
        bzr('bind', '../base')
309
309
        self.check_revno(5, '../base')
310
310
 
311
311
    def test_commit_after_merge(self):