/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 brzlib/tests/script.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 15:09:40 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521150940-v0kb1o7ebd9vmqjw
Fix some more tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
184
184
        def test_bug_nnnnn(self):
185
185
            sr = script.ScriptRunner()
186
186
            sr.run_script(self, '''
187
 
            $ bzr init
188
 
            $ bzr do-this
 
187
            $ brz init
 
188
            $ brz do-this
189
189
            # Boom, error
190
190
            ''')
191
191
    """
314
314
            output = None
315
315
        return output
316
316
 
317
 
    def do_bzr(self, test_case, input, args):
 
317
    def do_brz(self, test_case, input, args):
318
318
        retcode, out, err = test_case._run_bzr_core(
319
319
            args, retcode=None, encoding=None, stdin=input, working_dir=None)
320
320
        return retcode, out, err
506
506
 
507
507
        def test_bug_nnnnn(self):
508
508
            self.run_script('''
509
 
            $ bzr init
510
 
            $ bzr do-this
 
509
            $ brz init
 
510
            $ brz do-this
511
511
            # Boom, error
512
512
            ''')
513
513
    """