~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_sftp_transport.py

More NEWS, move sibling sftp tests into new framework, nuke legacy local transport tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
import bzrlib.errors as errors
23
23
from bzrlib.osutils import pathjoin, lexists
24
24
from bzrlib.tests import TestCaseInTempDir, TestCase, TestSkipped
25
 
from bzrlib.tests.test_transport import TestTransportMixIn
26
25
import bzrlib.transport
27
26
 
28
27
try:
114
113
        self.assertEquals(self.server.logs, [])
115
114
 
116
115
 
117
 
class SFTPTransportTestAbsoluteSibling(TestCaseWithSFTPServer, 
118
 
                                       TestTransportMixIn):
119
 
    """Test the SFTP transport with %2f based sibling paths to $HOME."""
120
 
 
121
 
    def setUp(self):
122
 
        self._override_home = '/dev/noone/runs/tests/here'
123
 
        super(SFTPTransportTestAbsoluteSibling, self).setUp()
124
 
 
125
 
 
126
116
class SFTPTransportTestRelative(TestCaseWithSFTPServer):
127
117
    """Test the SFTP transport with homedir based relative paths."""
128
118