~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/weave_fmt/__init__.py

Merge extra wt formats.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
    bzrdir,
25
25
    controldir,
26
26
    repository,
 
27
    workingtree,
27
28
    )
28
29
 
29
30
# Pre-0.8 formats that don't have a disk format string (because they are
84
85
from bzrlib.plugins.weave_fmt.branch import BzrBranchFormat4
85
86
branch.BranchFormat.register_extra_format(BzrBranchFormat4())
86
87
 
 
88
from bzrlib.plugins.weave_fmt.workingtree import WorkingTreeFormat2
 
89
workingtree.WorkingTreeFormat.register_extra_format(WorkingTreeFormat2())
 
90
 
87
91
def load_tests(basic_tests, module, loader):
88
92
    testmod_names = [
89
 
        'test_branch',
90
93
        'test_bzrdir',
91
94
        'test_repository',
92
95
        'test_workingtree',