class ActionCable::Connection::TestCookieJar

of cookies (i.e. signed or encrypted or plain)
unit-tests, but we want to make sure that users test against the correct types
We don’t want to use the whole “encryption stack” for connection

def encrypted

def encrypted
  self[:encrypted] ||= {}.with_indifferent_access
end

def signed

def signed
  self[:signed] ||= {}.with_indifferent_access
end