/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 bzrlib/builtins.py

  • Committer: Martin von Gagern
  • Date: 2010-10-20 12:06:13 UTC
  • mto: This revision was merged to the branch mainline in revision 5513.
  • Revision ID: martin.vgagern@gmx.net-20101020120613-7cj32rze5tbottt5
Avoid test-script command depending on testtools.

In order to achieve this, we move the command to its own file which lazily
loads all the internal workings upon execution.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6109
6109
        ('cmd_resolve', ['resolved'], 'bzrlib.conflicts'),
6110
6110
        ('cmd_conflicts', [], 'bzrlib.conflicts'),
6111
6111
        ('cmd_sign_my_commits', [], 'bzrlib.sign_my_commits'),
6112
 
        ('cmd_test_script', [], 'bzrlib.tests.script'),
 
6112
        ('cmd_test_script', [], 'bzrlib.cmd_test_script'),
6113
6113
        ]:
6114
6114
        builtin_command_registry.register_lazy(name, aliases, module_name)