/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/cmd_test_script.py

  • Committer: Martin von Gagern
  • Date: 2010-10-20 19:20:46 UTC
  • mto: This revision was merged to the branch mainline in revision 5513.
  • Revision ID: martin.vgagern@gmx.net-20101020192046-yjunbp9d5zttceia
Minor polishing suggested by John A Meinel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
from bzrlib import commands
26
26
 
 
27
 
27
28
class cmd_test_script(commands.Command):
28
29
    """Run a shell-like test from a file."""
29
30
 
32
33
 
33
34
    @commands.display_command
34
35
    def run(self, infile):
 
36
        # local imports to defer testtools dependency
35
37
        from bzrlib import tests
36
38
        from bzrlib.tests.script import TestCaseWithTransportAndScript
37
39