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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:06:19 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521180619-5qoo0470asgdnljt
Fix more tests (all?)

Show diffs side-by-side

added added

removed removed

Lines of Context:
578
578
        self.create_tree_with_shelf()
579
579
        self.run_script("""
580
580
$ cd tree
581
 
$ bzr unshelve --keep
 
581
$ brz unshelve --keep
582
582
2>Using changes with id "1".
583
583
2> M  foo
584
584
2>All changes applied successfully.
588
588
        self.create_tree_with_shelf()
589
589
        self.run_script("""
590
590
$ cd tree
591
 
$ bzr unshelve --delete-only
 
591
$ brz unshelve --delete-only
592
592
2>Deleted changes with id "1".
593
593
""")
594
594
 
596
596
        self.create_tree_with_shelf()
597
597
        self.run_script("""
598
598
$ cd tree
599
 
$ bzr unshelve --apply
 
599
$ brz unshelve --apply
600
600
2>Using changes with id "1".
601
601
2> M  foo
602
602
2>All changes applied successfully.
607
607
        self.create_tree_with_shelf()
608
608
        self.run_script("""
609
609
$ cd tree
610
 
$ bzr unshelve --dry-run
 
610
$ brz unshelve --dry-run
611
611
2>Using changes with id "1".
612
612
2> M  foo
613
613
""")