~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2009-05-27 18:57:14 UTC
  • Revision ID: aaron@aaronbentley.com-20090527185714-xpuqxlozukn132gi
Clean up fetch_ghosts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
    import tests.is_clean
78
78
    import tests.test_cbranch
79
79
    import tests.test_conflict_diff
 
80
    from bzrlib.plugins.bzrtools.tests import test_fetch_ghosts
80
81
    import tests.test_link_tree
81
82
    import tests.test_patch
82
83
    import tests.test_rspush
93
94
    result.addTest(zap.test_suite())
94
95
    result.addTest(TestLoader().loadTestsFromModule(tests.test_dotgraph))
95
96
    result.addTest(TestLoader().loadTestsFromModule(tests.is_clean))
 
97
    result.addTest(TestLoader().loadTestsFromModule(test_fetch_ghosts))
96
98
    result.addTest(TestLoader().loadTestsFromModule(tests.test_link_tree))
97
99
    result.addTest(TestLoader().loadTestsFromModule(tests.test_patch))
98
100
    result.addTest(TestLoader().loadTestsFromModule(tests.test_rspush))