~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Martin Pool
  • Date: 2010-04-01 04:41:18 UTC
  • mto: This revision was merged to the branch mainline in revision 5128.
  • Revision ID: mbp@sourcefrog.net-20100401044118-shyctqc02ob08ngz
ignore .testrepository

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
 
    )
30
 
from bzrlib import tests
 
26
from bzrlib.tests import TestCaseWithTransport
31
27
 
32
28
 
33
29
def load_tests(basic_tests, module, loader):
56
52
                     'bzrlib.tests.blackbox.test_commit',
57
53
                     'bzrlib.tests.blackbox.test_conflicts',
58
54
                     'bzrlib.tests.blackbox.test_debug',
59
 
                     'bzrlib.tests.blackbox.test_deleted',
60
55
                     'bzrlib.tests.blackbox.test_diff',
61
56
                     'bzrlib.tests.blackbox.test_dump_btree',
62
57
                     'bzrlib.tests.blackbox.test_dpush',
76
71
                     'bzrlib.tests.blackbox.test_locale',
77
72
                     'bzrlib.tests.blackbox.test_log',
78
73
                     'bzrlib.tests.blackbox.test_logformats',
79
 
                     'bzrlib.tests.blackbox.test_lookup_revision',
80
74
                     'bzrlib.tests.blackbox.test_ls',
81
75
                     'bzrlib.tests.blackbox.test_lsprof',
82
76
                     'bzrlib.tests.blackbox.test_merge',
129
123
    return suite
130
124
 
131
125
 
132
 
class ExternalBase(tests.TestCaseWithTransport):
133
 
    """Don't use this class anymore, use TestCaseWithTransport or similar"""
 
126
class ExternalBase(TestCaseWithTransport):
134
127
 
135
 
    @deprecated_method(deprecated_in((2, 2, 0)))
136
128
    def check_output(self, output, *args):
137
129
        """Verify that the expected output matches what bzr says.
138
130