~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Commands behaviour tests for bzr.
19
19
 
20
 
This tests the behaviour of the commands.
21
 
The API is tested in the tests/blackbox files.
 
20
Test the internal behaviour of the commands (the blackbox tests are intended to
 
21
test the usage of the commands).
22
22
"""
23
23
 
 
24
# FIXME: If the separation described above from the blackbox tests is not worth
 
25
# it, all the tests defined below should be moved to blackbox instead. 
 
26
 
24
27
from bzrlib.tests import TestLoader
25
28
 
26
29
 
29
32
        'bzrlib.tests.commands.test_branch',
30
33
        'bzrlib.tests.commands.test_cat',
31
34
        'bzrlib.tests.commands.test_checkout',
 
35
        'bzrlib.tests.commands.test_commit',
32
36
        'bzrlib.tests.commands.test_init',
33
37
        'bzrlib.tests.commands.test_init_repository',
34
38
        'bzrlib.tests.commands.test_merge',
35
39
        'bzrlib.tests.commands.test_missing',
36
40
        'bzrlib.tests.commands.test_pull',
37
41
        'bzrlib.tests.commands.test_push',
 
42
        'bzrlib.tests.commands.test_update',
38
43
        ]
39
44
    loader = TestLoader()
40
45
    suite = loader.loadTestsFromModuleNames(testmod_names)