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

  • Committer: Andrew Bennetts
  • Date: 2008-10-01 08:03:36 UTC
  • mfrom: (3753 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3757.
  • Revision ID: andrew.bennetts@canonical.com-20081001080336-78119uv8dg290ljv
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
465
465
class Test_SFTPReadvHelper(tests.TestCase):
466
466
 
467
467
    def checkGetRequests(self, expected_requests, offsets):
 
468
        if not paramiko_loaded:
 
469
            raise TestSkipped('you must have paramiko to run this test')
468
470
        helper = _mod_sftp._SFTPReadvHelper(offsets, 'artificial_test')
469
471
        self.assertEqual(expected_requests, helper._get_requests())
470
472