Class: ActionController::TestSession

Inherits:
Rack::Session::Abstract::SessionHash
  • Object
show all
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::Persisted::DEFAULT_OPTIONS

Instance Method Summary collapse

Constructor Details

#initialize(session = {}) ⇒ TestSession

Returns a new instance of TestSession.



180
181
182
183
184
185
# File 'lib/action_controller/test_case.rb', line 180

def initialize(session = {})
  super(nil, nil)
  @id = SecureRandom.hex(16)
  @data = stringify_keys(session)
  @loaded = true
end

Instance Method Details

#destroyObject



199
200
201
# File 'lib/action_controller/test_case.rb', line 199

def destroy
  clear
end

#exists?Boolean

Returns:

  • (Boolean)


187
188
189
# File 'lib/action_controller/test_case.rb', line 187

def exists?
  true
end

#fetch(key, *args, &block) ⇒ Object



203
204
205
# File 'lib/action_controller/test_case.rb', line 203

def fetch(key, *args, &block)
  @data.fetch(key.to_s, *args, &block)
end

#keysObject



191
192
193
# File 'lib/action_controller/test_case.rb', line 191

def keys
  @data.keys
end

#valuesObject



195
196
197
# File 'lib/action_controller/test_case.rb', line 195

def values
  @data.values
end