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

Make tests requiring a unicode file system skip where applicable

Show diffs side-by-side

added added

removed removed

Lines of Context:
256
256
        self._test_create_file('hello')
257
257
 
258
258
    def test_unicode_create_file(self):
 
259
        self.requireFeature(tests.UnicodeFilenameFeature)
259
260
        self._test_create_file(u'hell\u00d8')
260
261
 
261
262
    def _test_create_file_in_dir(self, dir_name, file_name):
276
277
        self._test_create_file_in_dir('dir', 'goodbye')
277
278
 
278
279
    def test_unicode_create_file_in_dir(self):
 
280
        self.requireFeature(tests.UnicodeFilenameFeature)
279
281
        self._test_create_file_in_dir(u'dir\u00d8', u'goodbye\u00d8')
280
282
 
281
283
    def test_modify_file(self):
306
308
        self._test_rename_one_file('hello', 'goodbye')
307
309
 
308
310
    def test_unicode_rename_one_file(self):
 
311
        self.requireFeature(tests.UnicodeFilenameFeature)
309
312
        self._test_rename_one_file(u'hello\u00d8', u'goodbye\u00d8')
310
313
 
311
314
    def test_rename_and_change_file(self):
390
393
        self._test_change_file_into_dir('hello')
391
394
 
392
395
    def test_unicode_change_file_into_dir(self):
 
396
        self.requireFeature(tests.UnicodeFilenameFeature)
393
397
        self._test_change_file_into_dir(u'hello\u00d8')
394
398
 
395
399
    def test_change_dir_into_file(self):
423
427
        self._test_make_file_executable('hello')
424
428
 
425
429
    def test_unicode_make_file_executable(self):
 
430
        self.requireFeature(tests.UnicodeFilenameFeature)
426
431
        self._test_make_file_executable(u'hello\u00d8')
427
432
 
428
433
    def test_create_symlink(self):