~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Parth Malwankar
  • Date: 2010-07-14 08:53:58 UTC
  • mto: (5050.3.7 2.2)
  • mto: This revision was merged to the branch mainline in revision 5365.
  • Revision ID: parth.malwankar@gmail.com-20100714085358-6un4ny0cn908spkq
better error message for RecursiveBind

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
from bzrlib.tests import (
34
34
    probe_bad_non_ascii,
35
35
    TestSkipped,
36
 
    UnicodeFilenameFeature,
37
36
    )
38
37
from bzrlib.tests import TestCaseWithTransport
39
38
 
113
112
    def test_unicode_commit_message_is_filename(self):
114
113
        """Unicode commit message same as a filename (Bug #563646).
115
114
        """
116
 
        self.requireFeature(UnicodeFilenameFeature)
117
115
        file_name = u'\N{euro sign}'
118
116
        self.run_bzr(['init'])
119
117
        open(file_name, 'w').write('hello world')