~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-03 20:18:35 UTC
  • mfrom: (1185.82.137 w-changeset)
  • Revision ID: pqm@pqm.ubuntu.com-20060603201835-1c9a1725641ccd24
Implement bundles

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright (C) 2005, 2006 by Canonical Ltd
2
 
#
 
2
 
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
#
 
7
 
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
12
 
#
 
12
 
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
33
33
    def test_05_empty_commit(self):
34
34
        """Commit of tree with no versioned files should fail"""
35
35
        # If forced, it should succeed, but this is not tested here.
36
 
        self.run_bzr("init")
 
36
        self.runbzr("init")
37
37
        self.build_tree(['hello.txt'])
38
 
        result = self.run_bzr("commit", "-m", "empty", retcode=3)
39
 
        self.assertEqual(('', 'bzr: ERROR: no changes to commit.'
40
 
                              ' use --unchanged to commit anyhow\n'),
41
 
                         result)
 
38
        self.runbzr("commit -m empty", retcode=3)
42
39
 
43
40
    def test_commit_with_path(self):
44
41
        """Commit tree with path of root specified"""
287
284
        # version or the u2 version.
288
285
        self.build_tree_contents([('u1/hosts', 'merge resolution\n')])
289
286
        self.run_bzr('commit', '-m', 'checkin merge of the offline work from u1', 'u1')
290
 
 
291
 
    def test_commit_respects_spec_for_removals(self):
292
 
        """Commit with a file spec should only commit removals that match"""
293
 
        t = self.make_branch_and_tree('.')
294
 
        self.build_tree(['file-a', 'dir-a/', 'dir-a/file-b'])
295
 
        t.add(['file-a', 'dir-a', 'dir-a/file-b'])
296
 
        t.commit('Create')
297
 
        t.remove(['file-a', 'dir-a/file-b'])
298
 
        os.chdir('dir-a')
299
 
        result = self.run_bzr('commit', '.', '-m' 'removed file-b')[1]
300
 
        self.assertNotContainsRe(result, 'file-a')
301
 
        result = self.run_bzr('status')[0]
302
 
        self.assertContainsRe(result, 'removed:\n  file-a')