/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 bzrlib/tests/test_msgeditor.py

  • Committer: Michael Ellerman
  • Date: 2006-03-09 00:24:48 UTC
  • mto: (1610.1.8 bzr.mbp.integration)
  • mto: This revision was merged to the branch mainline in revision 1616.
  • Revision ID: michael@ellerman.id.au-20060309002448-70cce15e3d605130
Make the "ignore line" in the commit message editor the "right" width, so
that if you make your message that wide it won't wrap in bzr log output.
Just as a visual aid.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005 by Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License version 2 as published by
 
5
# the Free Software Foundation.
 
6
#
 
7
# This program is distributed in the hope that it will be useful,
 
8
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
# GNU General Public License for more details.
 
11
#
 
12
# You should have received a copy of the GNU General Public License
 
13
# along with this program; if not, write to the Free Software
 
14
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
 
 
16
"""Test commit message editor.
 
17
"""
 
18
 
 
19
import os
 
20
import sys
 
21
 
 
22
from bzrlib.branch import Branch
 
23
from bzrlib.msgeditor import make_commit_message_template
 
24
from bzrlib.tests import TestCaseWithTransport, TestSkipped
 
25
 
 
26
 
 
27
class MsgEditorTest(TestCaseWithTransport):
 
28
 
 
29
    def make_uncommitted_tree(self):
 
30
        """Build a branch with uncommitted unicode named changes in the cwd."""
 
31
        working_tree = self.make_branch_and_tree('.')
 
32
        b = working_tree.branch
 
33
        filename = u'hell\u00d8'
 
34
        try:
 
35
            self.build_tree_contents([(filename, 'contents of hello')])
 
36
        except UnicodeEncodeError:
 
37
            raise TestSkipped("can't build unicode working tree in "
 
38
                "filesystem encoding %s" % sys.getfilesystemencoding())
 
39
        working_tree.add(filename)
 
40
        return working_tree
 
41
    
 
42
    def test_commit_template(self):
 
43
        """Test building a commit message template"""
 
44
        working_tree = self.make_uncommitted_tree()
 
45
        template = make_commit_message_template(working_tree, None)
 
46
        self.assertEqualDiff(template,
 
47
u"""\
 
48
added:
 
49
  hell\u00d8
 
50
""")