~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-02-04 18:06:54 UTC
  • mfrom: (5642.2.2 extra-branch-formats)
  • Revision ID: pqm@pqm.ubuntu.com-20110204180654-fmof6mad6s3aeam1
(jelmer) Allow the registration of "extra" branch formats in the branch
 format registry. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    tests,
30
30
    )
31
31
from bzrlib.branch import (BranchFormat,
32
 
                           _legacy_formats,
33
32
                           )
34
33
from bzrlib.remote import RemoteBranchFormat, RemoteBzrDirFormat
35
34
from bzrlib.tests import test_server
132
131
    # Generate a list of branch formats and their associated bzrdir formats to
133
132
    # use.
134
133
    combinations = [(format, format._matchingbzrdir) for format in
135
 
         BranchFormat.get_formats() + _legacy_formats]
 
134
         BranchFormat.get_formats()]
136
135
    scenarios = make_scenarios(
137
136
        # None here will cause the default vfs transport server to be used.
138
137
        None,