~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-02-07 18:33:42 UTC
  • mfrom: (5642.2.6 extra-workingtree-formats)
  • Revision ID: pqm@pqm.ubuntu.com-20110207183342-sid8o7k8d1c5ph7c
(jelmer) Allow registering "extra" working tree formats that can not be used
 in meta dirs. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
from bzrlib.transform import TransformPreview
40
40
from bzrlib.workingtree import (
41
41
    WorkingTreeFormat,
42
 
    _legacy_formats,
43
42
    )
44
43
from bzrlib.workingtree_4 import (
45
44
    DirStateRevisionTree,
398
397
        # None here will cause a readonly decorator to be created
399
398
        # by the TestCaseWithTransport.get_readonly_transport method.
400
399
        None,
401
 
        WorkingTreeFormat._formats.values() + _legacy_formats)
 
400
        WorkingTreeFormat.get_formats())
402
401
    # add the tests for the sub modules
403
402
    return tests.multiply_tests(submod_tests, scenarios, standard_tests)