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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-30 19:16:23 UTC
  • mto: This revision was merged to the branch mainline in revision 6639.
  • Revision ID: jelmer@jelmer.uk-20170530191623-t9ls96vjy9wslpoo
Remove deprecated functionality.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
"""
24
24
 
25
25
 
26
 
from breezy.symbol_versioning import (
27
 
    deprecated_in,
28
 
    deprecated_method,
29
 
    )
30
26
from breezy import tests
31
27
 
32
28
 
144
140
class ExternalBase(tests.TestCaseWithTransport):
145
141
    """Don't use this class anymore, use TestCaseWithTransport or similar"""
146
142
 
147
 
    @deprecated_method(deprecated_in((2, 2, 0)))
148
 
    def check_output(self, output, *args):
149
 
        """Verify that the expected output matches what brz says.
150
 
 
151
 
        The output is supplied first, so that you can supply a variable
152
 
        number of arguments to bzr.
153
 
        """
154
 
        self.assertEqual(self.run_bzr(*args)[0], output)