~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-08-24 21:59:21 UTC
  • mfrom: (5363.2.22 controldir-1)
  • Revision ID: pqm@pqm.ubuntu.com-20100824215921-p4nheij9k4x6i1jw
(jelmer) Split generic interface code out of bzrlib.bzrdir.BzrDir into
 bzrlib.controldir.ControlDir. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
                          default_transport,
40
40
                          multiply_tests,
41
41
                          )
42
 
from bzrlib.tests.per_bzrdir.test_bzrdir import TestCaseWithBzrDir
 
42
from bzrlib.tests.per_controldir.test_controldir import TestCaseWithControlDir
43
43
 
44
44
 
45
45
def make_scenarios(transport_server, transport_readonly_server, formats):
128
128
    return result
129
129
 
130
130
 
131
 
class TestCaseWithInterRepository(TestCaseWithBzrDir):
 
131
class TestCaseWithInterRepository(TestCaseWithControlDir):
132
132
 
133
133
    def setUp(self):
134
134
        super(TestCaseWithInterRepository, self).setUp()