/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/blackbox/test_commit.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-07-25 03:36:18 UTC
  • mfrom: (6034.2.4 test-feature-cleanup)
  • Revision ID: pqm@pqm.ubuntu.com-20110725033618-n5g9qg6iwyz2dqzw
(mbp) move test feature dependencies into test.features (Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    probe_bad_non_ascii,
37
37
    test_foreign,
38
38
    TestSkipped,
39
 
    UnicodeFilenameFeature,
 
39
    features,
40
40
    )
41
41
from bzrlib.tests import TestCaseWithTransport
42
42
 
138
138
    def test_unicode_commit_message_is_filename(self):
139
139
        """Unicode commit message same as a filename (Bug #563646).
140
140
        """
141
 
        self.requireFeature(UnicodeFilenameFeature)
 
141
        self.requireFeature(features.UnicodeFilenameFeature)
142
142
        file_name = u'\N{euro sign}'
143
143
        self.run_bzr(['init'])
144
144
        open(file_name, 'w').write('hello world')