~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Martin Pool
  • Date: 2008-05-02 07:31:24 UTC
  • mto: (3408.2.1 integration)
  • mto: This revision was merged to the branch mainline in revision 3410.
  • Revision ID: mbp@sourcefrog.net-20080502073124-nxmeqrzkji6u2m76
Remove code deprecated prior to 1.1 and its tests

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