~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2007-06-26 20:32:49 UTC
  • mto: (2581.1.1 cleanup-runbzr)
  • mto: This revision was merged to the branch mainline in revision 2588.
  • Revision ID: v.ladeuil+lp@free.fr-20070626203249-sqm4afiai5dxofum
Deprecate the varargs syntax and fix the tests.

* bzrlib/tests/__init__.py:
(TestCase.run_bzr): Activate the deprecation warning.
(TestCase.run_bzr_error): Add error_regexes to kwargs or run_bzr
get confused.

* bzrlib/tests/blackbox/test_selftest.py:
(TestRunBzr.test_args): Activate.

* bzrlib/tests/blackbox/test_inventory.py:
(TestInventory.assertInventoryEqual): Build the command from args
if not None.

* bzrlib/tests/blackbox/test_ls.py:
(TestLS.ls_equals): Build the command from args if not None.

* bzrlib/tests/blackbox/test_remove_tree.py:
(TestRemoveTree.test_remove_tree_lightweight_checkout_explicit):
Nice catch, we were calling run_bzr instead of run_bzr_error. This
went unnoticed for some time...

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
        """Tests 'ancestry' command with a location that is a
60
60
        repository branch."""
61
61
        self._build_branches()
62
 
        self.run_bzr('init-repo', 'repo')
63
 
        self.run_bzr('branch', 'A', 'repo/A')
 
62
        self.run_bzr('init-repo repo')
 
63
        self.run_bzr('branch A repo/A')
64
64
        self._check_ancestry('repo/A')
65
65
 
66
66
    def test_ancestry_with_checkout(self):
67
67
        """Tests 'ancestry' command with a location that is a
68
68
        checkout of a repository branch."""
69
69
        self._build_branches()
70
 
        self.run_bzr('init-repo', 'repo')
71
 
        self.run_bzr('branch', 'A', 'repo/A')
72
 
        self.run_bzr('checkout', 'repo/A', 'A-checkout')
 
70
        self.run_bzr('init-repo repo')
 
71
        self.run_bzr('branch A repo/A')
 
72
        self.run_bzr('checkout repo/A A-checkout')
73
73
        self._check_ancestry('A-checkout')
74
74
 
75
75
    def test_ancestry_with_lightweight_checkout(self):
76
76
        """Tests 'ancestry' command with a location that is a
77
77
        lightweight checkout of a repository branch."""
78
78
        self._build_branches()
79
 
        self.run_bzr('init-repo', 'repo')
80
 
        self.run_bzr('branch', 'A', 'repo/A')
81
 
        self.run_bzr('checkout', '--lightweight', 'repo/A', 'A-checkout')
 
79
        self.run_bzr('init-repo repo')
 
80
        self.run_bzr('branch A repo/A')
 
81
        self.run_bzr('checkout --lightweight repo/A A-checkout')
82
82
        self._check_ancestry('A-checkout')
83
83
 
84
84
    def test_ancestry_with_truncated_checkout(self):
85
85
        """Tests 'ancestry' command with a location that is a
86
86
        checkout of a repository branch with a shortened revision history."""
87
87
        self._build_branches()
88
 
        self.run_bzr('init-repo', 'repo')
89
 
        self.run_bzr('branch', 'A', 'repo/A')
90
 
        self.run_bzr('checkout', '-r', '2', 'repo/A', 'A-checkout')
 
88
        self.run_bzr('init-repo repo')
 
89
        self.run_bzr('branch A repo/A')
 
90
        self.run_bzr('checkout -r 2 repo/A A-checkout')
91
91
        self._check_ancestry('A-checkout', "A1\nA2\n")
92
92
 
93
93
    def test_ancestry_with_truncated_lightweight_checkout(self):
94
94
        """Tests 'ancestry' command with a location that is a lightweight
95
95
        checkout of a repository branch with a shortened revision history."""
96
96
        self._build_branches()
97
 
        self.run_bzr('init-repo', 'repo')
98
 
        self.run_bzr('branch', 'A', 'repo/A')
99
 
        self.run_bzr('checkout', '-r', '2', '--lightweight',
100
 
                'repo/A', 'A-checkout')
 
97
        self.run_bzr('init-repo repo')
 
98
        self.run_bzr('branch A repo/A')
 
99
        self.run_bzr('checkout -r 2 --lightweight repo/A A-checkout')
101
100
        self._check_ancestry('A-checkout', "A1\nA2\n")