~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to tests/__init__.py

  • Committer: Michael Ellerman
  • Date: 2005-11-28 08:59:54 UTC
  • mto: (0.3.1 shelf-dev) (325.1.2 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 334.
  • Revision ID: michael@ellerman.id.au-20051128085954-ce1fa812eeeab31d
Restart after a done was broken, and we weren't resetting the print logic at
the end of the loop either, so we wouldn't print the hunk after a 'dr'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
def test_suite():
2
 
    try:
3
 
        import bzrlib.plugins.bzrtools.tests.test_baz_import
4
 
    except ImportError:
5
 
        from unittest import TestSuite
6
 
        return TestSuite()
7
 
    return bzrlib.plugins.bzrtools.tests.test_baz_import.test_suite()