~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport.py

[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)

> When you use flat string on Windows for base part of file names then all
> derived file names is always representing as flat string. On Linux/Cygwin as
> I can see in situations when path cannot be represented as flat string (or in
> ascii encoding?) it silently converted to unicode. As result we have
> different behaviour with non-ascii (non-english) file names.

Show diffs side-by-side

added added

removed removed

Lines of Context:
458
458
 
459
459
    def test_delete(self):
460
460
        # TODO: Test Transport.delete
461
 
        t = self.get_transport()
 
461
        pass
462
462
 
463
463
    def test_move(self):
464
464
        # TODO: Test Transport.move
465
 
        t = self.get_transport()
466
 
 
467
 
    def test_copy(self):
468
 
        # TODO: Test Transport.move
469
 
        t = self.get_transport()
 
465
        pass
470
466
 
471
467
    def test_connection_error(self):
472
468
        """ConnectionError is raised when connection is impossible"""