~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_too_much.py

[merge] Michael Ellerman: support 'bzr log -r ..' and add tests, also clarify 'bzr help --long'

Show diffs side-by-side

added added

removed removed

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