~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Joachim Nilsson
  • Date: 2007-07-31 22:08:47 UTC
  • mto: (2664.2.1 merge)
  • mto: This revision was merged to the branch mainline in revision 2665.
  • Revision ID: jocke@vmlinux.org-20070731220847-9zenki6olnl5yzmq
Update tag test to match new description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
    def test_tag_command_help(self):
42
42
        out, err = self.run_bzr('help tag')
43
 
        self.assertContainsRe(out, 'Create a tag')
 
43
        self.assertContainsRe(out, 'Create, remove or modify a tag')
44
44
 
45
45
    def test_cannot_tag_range(self):
46
46
        out, err = self.run_bzr('tag -r1..10 name', retcode=3)