~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

merge 2.0 branch rev 4647

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
These test the conformance of all the bzrdir variations to the expected API.
23
23
Specific tests for individual formats are in the tests/test_bzrdir.py file
24
 
rather than in tests/branch_implementations/*.py.
 
24
rather than in tests/per_branch/*.py.
25
25
"""
26
26
 
27
27
from bzrlib.bzrdir import BzrDirFormat
74
74
 
75
75
 
76
76
def load_tests(standard_tests, module, loader):
77
 
    test_bzrdir_implementations = [
78
 
        'bzrlib.tests.bzrdir_implementations.test_bzrdir',
79
 
        'bzrlib.tests.bzrdir_implementations.test_push',
 
77
    test_per_bzrdir = [
 
78
        'bzrlib.tests.per_bzrdir.test_bzrdir',
 
79
        'bzrlib.tests.per_bzrdir.test_push',
80
80
        ]
81
 
    submod_tests = loader.loadTestsFromModuleNames(test_bzrdir_implementations)
 
81
    submod_tests = loader.loadTestsFromModuleNames(test_per_bzrdir)
82
82
    formats = BzrDirFormat.known_formats()
83
83
    scenarios = make_scenarios(
84
84
        default_transport,