~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/blackbox.py

  • Committer: Robert Collins
  • Date: 2005-10-18 12:53:07 UTC
  • mfrom: (1442.1.70)
  • Revision ID: robertc@robertcollins.net-20051018125307-730e47c1a034cb6f
Merge in various improvements to pull, testing and configuration.

* 'bzr pull' now accepts '--clobber' which will discard local changes
  and make this branch identical to the source branch. (Robert Collins)

* There is a new method for TestCaseInTempDir, assertFileEqual, which
  will check that a given content is equal to the content of the named
  file. (Robert Collins)

* 'pull' has been factored out of the command as WorkingTree.pull().
  A new option to WorkingTree.pull has been added, clobber, which will
  ignore diverged history and pull anyway.
  (Robert Collins)

* config.Config has a 'get_user_option' call that accepts an option name.
  This will be looked up in branches.conf and bazaar.conf as normal.
  It is intended that this be used by plugins to support options -
  options of built in programs should have specific methods on the config.
  (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
400
400
        self.runbzr('commit -m blah2 --unchanged')
401
401
        os.chdir('../b')
402
402
        self.runbzr('commit -m blah3 --unchanged')
 
403
        # no clobber
403
404
        self.runbzr('pull ../a', retcode=1)
 
405
        os.chdir('..')
 
406
        self.runbzr('branch b clobberme')
 
407
        os.chdir('clobberme')
 
408
        self.runbzr('pull --clobber ../a')
 
409
        clobbered = Branch.open('.')
 
410
        self.assertEqual(clobbered.revision_history(),
 
411
                         a.revision_history())
404
412
        os.chdir('../a')
405
413
        self.runbzr('merge ../b')
406
414
        self.runbzr('commit -m blah4 --unchanged')