/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: 2010-06-11 06:52:28 UTC
  • mto: This revision was merged to the branch mainline in revision 5309.
  • Revision ID: mbp@canonical.com-20100611065228-redjfjq4g8nfadvx
Deprecate ExternalBase.check_output and update some callers to use scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
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
 
127
131
 
128
132
class ExternalBase(tests.TestCaseWithTransport):
129
133
 
 
134
    @deprecated_method(deprecated_in((2, 2, 0)))
130
135
    def check_output(self, output, *args):
131
136
        """Verify that the expected output matches what bzr says.
132
137