Class: ActionController::TestSession
- Inherits:
-
Rack::Session::Abstract::SessionHash
- Object
- Rack::Session::Abstract::SessionHash
- ActionController::TestSession
- Defined in:
- lib/action_controller/test_case.rb
Overview
Methods #destroy and #load! are overridden to avoid calling methods on the
Constant Summary collapse
- DEFAULT_OPTIONS =
:nodoc:
Rack::Session::Abstract::ID::DEFAULT_OPTIONS
Instance Method Summary collapse
- #destroy ⇒ Object
- #exists? ⇒ Boolean
- #fetch(key, *args, &block) ⇒ Object
-
#initialize(session = {}) ⇒ TestSession
constructor
A new instance of TestSession.
- #keys ⇒ Object
- #values ⇒ Object
Constructor Details
#initialize(session = {}) ⇒ TestSession
Returns a new instance of TestSession.
309 310 311 312 313 314 |
# File 'lib/action_controller/test_case.rb', line 309 def initialize(session = {}) super(nil, nil) @id = SecureRandom.hex(16) @data = stringify_keys(session) @loaded = true end |
Instance Method Details
#destroy ⇒ Object
328 329 330 |
# File 'lib/action_controller/test_case.rb', line 328 def destroy clear end |
#exists? ⇒ Boolean
316 317 318 |
# File 'lib/action_controller/test_case.rb', line 316 def exists? true end |
#fetch(key, *args, &block) ⇒ Object
332 333 334 |
# File 'lib/action_controller/test_case.rb', line 332 def fetch(key, *args, &block) @data.fetch(key.to_s, *args, &block) end |
#keys ⇒ Object
320 321 322 |
# File 'lib/action_controller/test_case.rb', line 320 def keys @data.keys end |
#values ⇒ Object
324 325 326 |
# File 'lib/action_controller/test_case.rb', line 324 def values @data.values end |