/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    suite.addTests(basic_tests)
31
31
 
32
32
    testmod_names = [
33
 
        'bzrlib.tests.commands.test_branch',
34
 
        'bzrlib.tests.commands.test_cat',
35
 
        'bzrlib.tests.commands.test_checkout',
36
 
        'bzrlib.tests.commands.test_commit',
37
 
        'bzrlib.tests.commands.test_init',
38
 
        'bzrlib.tests.commands.test_init_repository',
39
 
        'bzrlib.tests.commands.test_merge',
40
 
        'bzrlib.tests.commands.test_missing',
41
 
        'bzrlib.tests.commands.test_pull',
42
 
        'bzrlib.tests.commands.test_push',
43
 
        'bzrlib.tests.commands.test_update',
44
 
        'bzrlib.tests.commands.test_revert',
 
33
        'breezy.tests.commands.test_branch',
 
34
        'breezy.tests.commands.test_cat',
 
35
        'breezy.tests.commands.test_checkout',
 
36
        'breezy.tests.commands.test_commit',
 
37
        'breezy.tests.commands.test_init',
 
38
        'breezy.tests.commands.test_init_repository',
 
39
        'breezy.tests.commands.test_merge',
 
40
        'breezy.tests.commands.test_missing',
 
41
        'breezy.tests.commands.test_pull',
 
42
        'breezy.tests.commands.test_push',
 
43
        'breezy.tests.commands.test_update',
 
44
        'breezy.tests.commands.test_revert',
45
45
        ]
46
46
    # add the tests for the sub modules
47
47
    suite.addTests(loader.loadTestsFromModuleNames(testmod_names))