~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2007-06-28 12:26:11 UTC
  • mto: (2581.1.1 cleanup-runbzr)
  • mto: This revision was merged to the branch mainline in revision 2588.
  • Revision ID: v.ladeuil+lp@free.fr-20070628122611-0suhzl7o6aep1ibz
Revert the intrusive run_bzr('commit') rewritings.

* bzrlib/tests/test_smart_add.py:
(TestSmartAdd.test_add_dry_run,
TestSmartAdd.test_returns_and_ignores):  Delete useless import.

Show diffs side-by-side

added added

removed removed

Lines of Context:
294
294
 
295
295
        # Check and make sure it also works if parent is ahead multiple
296
296
        os.chdir('../base')
297
 
        bzr('commit -m base_3 --unchanged')
298
 
        bzr('commit -m base_4 --unchanged')
299
 
        bzr('commit -m base_5 --unchanged')
 
297
        bzr(['commit', '-m', 'base 3', '--unchanged'])
 
298
        bzr(['commit', '-m', 'base 4', '--unchanged'])
 
299
        bzr(['commit', '-m', 'base 5', '--unchanged'])
300
300
        self.check_revno(5)
301
301
 
302
302
        os.chdir('../child')
322
322
 
323
323
        # Check and make sure it also works if child is ahead multiple
324
324
        bzr('unbind')
325
 
        bzr('commit -m child_3 --unchanged')
326
 
        bzr('commit -m child_4 --unchanged')
327
 
        bzr('commit -m child_5 --unchanged')
 
325
        bzr(['commit', '-m', 'child 3', '--unchanged'])
 
326
        bzr(['commit', '-m', 'child 4', '--unchanged'])
 
327
        bzr(['commit', '-m', 'child 5', '--unchanged'])
328
328
        self.check_revno(5)
329
329
 
330
330
        self.check_revno(1, '../base')
345
345
        os.chdir('other')
346
346
        open('c', 'wb').write('file c\n')
347
347
        bzr('add c')
348
 
        bzr('commit -m adding_c')
 
348
        bzr(['commit', '-m', 'adding c'])
349
349
        new_rev_id = bzr('revision-history')[0].strip().split('\n')[-1]
350
350
 
351
351
        os.chdir('../child')
365
365
        # Commit should succeed, and cause merged revisions to
366
366
        # be pulled into base
367
367
        os.chdir('../child')
368
 
        bzr('commit -m merge_other')
 
368
        bzr(['commit', '-m', 'merge other'])
369
369
 
370
370
        self.check_revno(2)
371
371
 
383
383
        
384
384
        os.chdir('other')
385
385
        open('a', 'wb').write('new contents\n')
386
 
        bzr('commit -m changed_a')
 
386
        bzr(['commit', '-m', 'changed a'])
387
387
        self.check_revno(2)
388
388
        open('a', 'ab').write('and then some\n')
389
 
        bzr('commit -m another_a')
 
389
        bzr(['commit', '-m', 'another a'])
390
390
        self.check_revno(3)
391
391
        open('a', 'ab').write('and some more\n')
392
 
        bzr('commit -m yet_another_a')
 
392
        bzr(['commit', '-m', 'yet another a'])
393
393
        self.check_revno(4)
394
394
 
395
395
        os.chdir('../child')
396
396
        open('a', 'wb').write('also changed a\n')
397
 
        bzr('commit -m child_modified_a')
 
397
        bzr(['commit', '-m', 'child modified a'])
398
398
 
399
399
        self.check_revno(2)
400
400
        self.check_revno(2, '../base')