/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to tests.py

  • Committer: Jeff Licquia
  • Date: 2008-04-05 16:11:53 UTC
  • mto: (0.54.69 automated)
  • mto: This revision was merged to the branch mainline in revision 6630.
  • Revision ID: jeff@licquia.org-20080405161153-56i2qzlha5opaivp
Tests for detecting "done" status, plus a first run at implementation.
One test still fails.

Show diffs side-by-side

added added

removed removed

Lines of Context:
221
221
        self.run_bzr(['bisect', 'no'])
222
222
        self.assertRevno(3)
223
223
 
 
224
        # Run again.  Since we're done, this should do nothing.
 
225
 
 
226
        self.run_bzr(['bisect', 'no'])
 
227
        self.assertRevno(3)
 
228
 
224
229
    def testWorkflowSubtree(self):
225
230
        """Run through a usage scenario where the offending change
226
231
        is in a subtree."""
252
257
        self.run_bzr(['bisect', 'yes'])
253
258
        self.assertRevno(1.1)
254
259
 
 
260
        # Run again.  Since we're done, this should do nothing.
 
261
 
 
262
        self.run_bzr(['bisect', 'yes'])
 
263
        self.assertRevno(1.1)
 
264
 
255
265
    def testMove(self):
256
266
        "Test manually moving to a different revision during the bisection."
257
267