/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: Andrew Bennetts
  • Date: 2008-03-27 06:10:18 UTC
  • mfrom: (3309 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3320.
  • Revision ID: andrew.bennetts@canonical.com-20080327061018-dxztpxyv6yoeg3am
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
 
32
32
class FakeStack:
 
33
 
33
34
    def __init__(self, top):
34
35
        self.__top = top
35
36
 
52
53
 
53
54
 
54
55
class TestProgress(TestCase):
 
56
 
55
57
    def setUp(self):
56
58
        q = DummyProgress()
57
59
        self.top = ChildProgress(_stack=FakeStack(q))