/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/blackbox/__init__.py

  • Committer: Martin Pool
  • Date: 2008-05-08 04:33:38 UTC
  • mfrom: (3414 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3415.
  • Revision ID: mbp@sourcefrog.net-20080508043338-ru3vflx8z641a76k
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
from bzrlib.tests.EncodingAdapter import EncodingTestAdapter
35
35
from bzrlib.symbol_versioning import (
36
36
    deprecated_method,
37
 
    zero_eighteen,
38
37
    )
39
38
import bzrlib.ui as ui
40
39
 
130
129
 
131
130
class ExternalBase(TestCaseWithTransport):
132
131
 
133
 
    @deprecated_method(zero_eighteen)
134
 
    def runbzr(self, args, retcode=0):
135
 
        if isinstance(args, basestring):
136
 
            args = args.split()
137
 
        return self.run_bzr(args, retcode=retcode)
138
 
 
139
132
    def check_output(self, output, *args):
140
133
        """Verify that the expected output matches what bzr says.
141
134