~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Martin Pool
  • Date: 2006-03-10 06:29:53 UTC
  • mfrom: (1608 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1611.
  • Revision ID: mbp@sourcefrog.net-20060310062953-bc1c7ade75c89a7a
[merge] bzr.dev; pycurl not updated for readv yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
                     'bzrlib.tests.blackbox.test_find_merge_base',
49
49
                     'bzrlib.tests.blackbox.test_help',
50
50
                     'bzrlib.tests.blackbox.test_info',
 
51
                     'bzrlib.tests.blackbox.test_init',
51
52
                     'bzrlib.tests.blackbox.test_log',
52
53
                     'bzrlib.tests.blackbox.test_logformats',
53
54
                     'bzrlib.tests.blackbox.test_missing',
92
93
    def clear(self):
93
94
        """See progress.ProgressBar.clear()."""
94
95
 
 
96
    def finished(self):
 
97
        """See progress.ProgressBar.finished()."""
 
98
 
95
99
    def note(self, fmt_string, *args, **kwargs):
96
100
        """See progress.ProgressBar.note()."""
97
101
        print fmt_string % args
98
102
 
99
103
    def progress_bar(self):
100
104
        return self
101
 
        
 
105
    
 
106
    def nested_progress_bar(self):
 
107
        return self
 
108
 
102
109
    def update(self, message, count=None, total=None):
103
110
        """See progress.ProgressBar.update()."""