class ActionCable::Connection::TestCookieJar
We don’t want to use the whole “encryption stack” for connection unit-tests, but we want to make sure that users test against the correct types of cookies (i.e. signed or encrypted or plain)
Inherits From
Public instance methods
Source code GitHub
# File actioncable/lib/action_cable/connection/test_case.rb, line 41
def encrypted
self[:encrypted] ||= {}.with_indifferent_access
end
Source code GitHub
# File actioncable/lib/action_cable/connection/test_case.rb, line 37
def signed
self[:signed] ||= {}.with_indifferent_access
end