/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/plugins/bash_completion/tests/test_bashcomp.py

  • Committer: Jelmer Vernooij
  • Date: 2019-09-01 15:33:59 UTC
  • mto: This revision was merged to the branch mainline in revision 7404.
  • Revision ID: jelmer@jelmer.uk-20190901153359-9gl0ai0x5wuiv444
Rename init-repo to init-shared-repo.

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
 
118
118
    def test_cmd_ini(self):
119
119
        self.complete(['brz', 'ini'])
120
 
        self.assertCompletionContains('init', 'init-repo', 'init-repository')
 
120
        self.assertCompletionContains(
 
121
            'init', 'init-shared-repo', 'init-shared-repository')
121
122
        self.assertCompletionOmits('commit')
122
123
 
123
124
    def test_init_opts(self):
297
298
    def test_commands(self):
298
299
        dc = DataCollector()
299
300
        dc.commands()
300
 
        self.assertSubset(['init', 'init-repo', 'init-repository'],
301
 
                          dc.data.all_command_aliases())
 
301
        self.assertSubset(
 
302
            ['init', 'init-shared-repo', 'init-shared-repository'],
 
303
            dc.data.all_command_aliases())
302
304
 
303
305
    def test_commands_from_plugins(self):
304
306
        dc = DataCollector()