class Net::SSH::Test::Script

def sends_channel_request_pty(channel)

Net::SSH::Test::Channel#sends_request_pty.
Net::SSH::Test::Channel +channel+. This will typically be called via
Scripts the sending of a channel request pty packets from the given
def sends_channel_request_pty(channel)
  data = ['pty-req', false]
  data += Net::SSH::Connection::Channel::VALID_PTY_OPTIONS.merge(modes: "\0").values
  events << LocalPacket.new(:channel_request, channel.remote_id, *data)
end