~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

Got the bzrdir api straightened out, plenty of refactoring to use it pending, but the api is up and running.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
"""
25
25
 
26
26
from bzrlib.tests import TestLoader
27
 
from bzrlib.tests import TestCaseInTempDir, BzrTestBase
 
27
from bzrlib.tests import TestCaseWithTransport, BzrTestBase
28
28
 
29
29
def test_suite():
30
30
    testmod_names = [
49
49
    return TestLoader().loadTestsFromNames(testmod_names)
50
50
 
51
51
 
52
 
class ExternalBase(TestCaseInTempDir):
 
52
class ExternalBase(TestCaseWithTransport):
53
53
 
54
54
    def runbzr(self, args, retcode=0, backtick=False):
55
55
        if isinstance(args, basestring):