An extension to Net::SSH::Connection::Channel. Facilitates unit testing.
Public instance methods
send_data_for_test
(data)
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.
[show source]
# File lib/net/ssh/test/extensions.rb, line 103 103: def send_data_for_test(data) 104: send_data_for_real(data) 105: enqueue_pending_output 106: end