~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Robert Collins
  • Date: 2005-09-07 16:33:05 UTC
  • mto: (147.2.6) (364.1.3 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: robertc@robertcollins.net-20050907163305-db235b6064a26d03
test empty import and tagged branches

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
        bzrlib.commands.register_command(command)
85
85
 
86
86
def test_suite():
 
87
    import baz_import
87
88
    import tests
88
89
    from doctest import DocTestSuite
89
90
    from unittest import TestSuite
90
91
    result = TestSuite()
91
92
    result.addTest(DocTestSuite(bzrtools))
 
93
    result.addTest(DocTestSuite(baz_import))
92
94
    result.addTest(tests.test_suite())
93
95
    return result