/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 bzrlib/tests/test_progress.py

  • Committer: Jelmer Vernooij
  • Date: 2009-03-22 00:24:37 UTC
  • mfrom: (4180 +trunk)
  • mto: (3920.2.35 dpush)
  • mto: This revision was merged to the branch mainline in revision 4281.
  • Revision ID: jelmer@samba.org-20090322002437-0vlyqnz29isqeozo
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
class TestProgress(TestCase):
59
59
 
60
60
    def setUp(self):
 
61
        TestCase.setUp(self)
61
62
        q = DummyProgress()
62
63
        self.top = ChildProgress(_stack=FakeStack(q))
63
64
 
91
92
        self.assertEqual(self.top.child_fraction, 1)
92
93
 
93
94
    def test_implementations(self):
94
 
        for implementation in (TTYProgressBar, DotsProgressBar, 
 
95
        for implementation in (TTYProgressBar, DotsProgressBar,
95
96
                               DummyProgress):
96
97
            self.check_parent_handling(implementation)
97
98