/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/tests/blackbox/test_revision_history.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:
55
55
    def test_revision_history_with_repo_branch(self):
56
56
        """With a repository branch location."""
57
57
        self._build_branch()
58
 
        self.run_bzr('init-repo repo')
 
58
        self.run_bzr('init-shared-repo repo')
59
59
        self.run_bzr('branch test repo/test')
60
60
        self._check_revision_history('repo/test')
61
61
 
62
62
    def test_revision_history_with_checkout(self):
63
63
        """With a repository branch checkout location."""
64
64
        self._build_branch()
65
 
        self.run_bzr('init-repo repo')
 
65
        self.run_bzr('init-shared-repo repo')
66
66
        self.run_bzr('branch test repo/test')
67
67
        self.run_bzr('checkout repo/test test-checkout')
68
68
        self._check_revision_history('test-checkout')
70
70
    def test_revision_history_with_lightweight_checkout(self):
71
71
        """With a repository branch lightweight checkout location."""
72
72
        self._build_branch()
73
 
        self.run_bzr('init-repo repo')
 
73
        self.run_bzr('init-shared-repo repo')
74
74
        self.run_bzr('branch test repo/test')
75
75
        self.run_bzr('checkout --lightweight repo/test test-checkout')
76
76
        self._check_revision_history('test-checkout')