/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_selftest.py

forgot my self.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
 
55
55
    def test_unicode_paths(self):
56
56
        filename = u'hell\u00d8'
57
 
        self.build_tree_contents([(filename, 'contents of hello')])
 
57
        try:
 
58
            self.build_tree_contents([(filename, 'contents of hello')])
 
59
        except UnicodeEncodeError:
 
60
            raise TestSkipped("can't build unicode working tree in "
 
61
                "filesystem encoding %s" % sys.getfilesystemencoding())
58
62
        self.failUnlessExists(filename)
59
63
 
60
64