~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Jelmer Vernooij
  • Date: 2011-01-11 04:40:57 UTC
  • mto: (5582.12.2 weave-plugin)
  • mto: This revision was merged to the branch mainline in revision 5718.
  • Revision ID: jelmer@samba.org-20110111044057-oujyisxd4flaw7d2
Move weave repository tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
branch.network_format_registry.register_lazy(
81
81
    "Bazaar-NG branch, format 6\n", "bzrlib.plugins.weave_fmt.branch",
82
82
    "BzrBranchFormat4")
 
83
 
 
84
 
 
85
def load_tests(basic_tests, module, loader):
 
86
    testmod_names = [
 
87
        'test_repository',
 
88
        ]
 
89
    basic_tests.addTest(loader.loadTestsFromModuleNames(
 
90
            ["%s.%s" % (__name__, tmn) for tmn in testmod_names]))
 
91
    return basic_tests