diff --git a/test/functional/backends/test_netssh_sftp.rb b/test/functional/backends/test_netssh_sftp.rb new file mode 100644 index 00000000..1575fb14 --- /dev/null +++ b/test/functional/backends/test_netssh_sftp.rb @@ -0,0 +1,17 @@ +require 'helper' +require_relative 'netssh_transfer_tests' + +module SSHKit + module Backend + class TestNetsshSftp < FunctionalTest + include NetsshTransferTests + + def setup + super + SSHKit::Backend::Netssh.configure do |ssh| + ssh.transfer_method = :sftp + end + end + end + end +end