/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/tests/blackbox/test_too_much.py

Add custom description for help's --long option, this fixes bug #31217.
There were no real tests for help, so add a bunch of black box tests
to confirm all the various incantations work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
 
52
52
class TestCommands(ExternalBase):
53
53
 
54
 
    def test_help_commands(self):
55
 
        self.runbzr('--help')
56
 
        self.runbzr('help')
57
 
        self.runbzr('help commands')
58
 
        self.runbzr('help help')
59
 
        self.runbzr('commit -h')
60
 
 
61
54
    def test_init_branch(self):
62
55
        self.runbzr(['init'])
63
56