~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Robert Collins
  • Date: 2005-09-07 12:51:20 UTC
  • Revision ID: robertc@robertcollins.net-20050907125120-8661be3d7d7f4b25
make bzr selftest run the plugins tests, and fix them

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
if hasattr(bzrlib.commands, 'register_command'):
83
83
    for command in commands:
84
84
        bzrlib.commands.register_command(command)
 
85
 
 
86
def test_suite():
 
87
    from doctest import DocTestSuite
 
88
    return DocTestSuite(bzrtools)