~jelmer/brz/colocated-spec

« back to all changes in this revision

Viewing changes to breezy/tests/transport_util.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
 
from brzlib.tests import features
 
17
from breezy.tests import features
18
18
 
19
19
# SFTPTransport offers better performances but relies on paramiko, if paramiko
20
20
# is not available, we fallback to FtpTransport
21
21
if features.paramiko.available():
22
 
    from brzlib.tests import test_sftp_transport
23
 
    from brzlib.transport import sftp, Transport
 
22
    from breezy.tests import test_sftp_transport
 
23
    from breezy.transport import sftp, Transport
24
24
    _backing_scheme = 'sftp'
25
25
    _backing_transport_class = sftp.SFTPTransport
26
26
    _backing_test_class = test_sftp_transport.TestCaseWithSFTPServer
27
27
else:
28
 
    from brzlib.transport import ftp, Transport
29
 
    from brzlib.tests import test_ftp_transport
 
28
    from breezy.transport import ftp, Transport
 
29
    from breezy.tests import test_ftp_transport
30
30
    _backing_scheme = 'ftp'
31
31
    _backing_transport_class = ftp.FtpTransport
32
32
    _backing_test_class = test_ftp_transport.TestCaseWithFTPServer