~spiv/bzr-crosscheck/integration

« back to all changes in this revision

Viewing changes to tests/__init__.py

  • Committer: Andrew Bennetts
  • Date: 2010-10-20 06:58:13 UTC
  • mfrom: (0.1.3 repo-check)
  • Revision ID: andrew.bennetts@canonical.com-20101020065813-v0m31rf93gj4cnf8
First pass at integrating my cross-check with Ian's.  I've renamed Ian's 'cross-check' command to 'same-branch', as it is less like the builtin 'check' than mine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
def test_suite():
25
25
    module_names = [
26
 
        'bzrlib.plugins.crosscheck.tests.test_cross_check',
 
26
        'bzrlib.plugins.crosscheck.tests.test_same_branch',
27
27
        ]
28
28
    loader = TestLoader()
29
29
    return loader.loadTestsFromModuleNames(module_names)