~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/__init__.py

Merged mailine

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 by Canonical Ltd
 
1
# Copyright (C) 2005, 2006 by Canonical Ltd
2
2
# -*- coding: utf-8 -*-
3
3
 
4
4
# This program is free software; you can redistribute it and/or modify
28
28
 
29
29
def test_suite():
30
30
    testmod_names = [
 
31
                     'bzrlib.tests.blackbox.test_added',
31
32
                     'bzrlib.tests.blackbox.test_cat',
32
 
                     'bzrlib.tests.blackbox.test_too_much',
 
33
                     'bzrlib.tests.blackbox.test_diff',
 
34
                     'bzrlib.tests.blackbox.test_export',
 
35
                     'bzrlib.tests.blackbox.test_missing',
 
36
                     'bzrlib.tests.blackbox.test_outside_wt',
33
37
                     'bzrlib.tests.blackbox.test_pull',
34
38
                     'bzrlib.tests.blackbox.test_revno',
 
39
                     'bzrlib.tests.blackbox.test_revision_info',
 
40
                     'bzrlib.tests.blackbox.test_too_much',
35
41
                     'bzrlib.tests.blackbox.test_versioning',
36
 
                     'bzrlib.tests.blackbox.test_missing'
37
42
                     ]
38
43
    return TestLoader().loadTestsFromNames(testmod_names)
39
44