module Net::SSH::Test::Extensions::Channel

An extension to Net::SSH::Connection::Channel. Facilitates unit testing.

Public Instance Methods

send_data_for_test(data) click to toggle source

The testing version of Net::SSH::Connection::Channel#send_data. Calls the original implementation, and then immediately enqueues the data for output so that scripted sends are properly interpreted as discrete (rather than concatenated) data packets.

# File lib/net/ssh/test/extensions.rb, line 105
def send_data_for_test(data)
  send_data_for_real(data)
  enqueue_pending_output
end