~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2010-06-23 08:19:28 UTC
  • mfrom: (5317 +trunk)
  • mto: (5247.1.11 first-try)
  • mto: This revision was merged to the branch mainline in revision 5326.
  • Revision ID: v.ladeuil+lp@free.fr-20100623081928-z9q18q30oo5as831
Merge bzr.dev into cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
"""
24
24
 
25
25
 
 
26
from bzrlib.symbol_versioning import (
 
27
    deprecated_in,
 
28
    deprecated_method,
 
29
    )
26
30
from bzrlib import tests
27
31
 
28
32
 
126
130
 
127
131
 
128
132
class ExternalBase(tests.TestCaseWithTransport):
 
133
    """Don't use this class anymore, use TestCaseWithTransport or similar"""
129
134
 
 
135
    @deprecated_method(deprecated_in((2, 2, 0)))
130
136
    def check_output(self, output, *args):
131
137
        """Verify that the expected output matches what bzr says.
132
138