class Net::SSH::Test::Channel

def local_id

(See Net::SSH::Test::Packet#instantiate!.)
that will return the local-id later if the local id has not yet been set.
Returns the local (client-assigned) id for this channel, or a Proc object
def local_id
  @local_id || Proc.new { @local_id or raise "local-id has not been set yet!" }
end