Class: ActionController::TestSession

Inherits:
Rack::Session::Abstract::SessionHash
  • Object
show all
Defined in:
lib/action_controller/test_case.rb

Overview

:nodoc:

Constant Summary collapse

DEFAULT_OPTIONS =
Rack::Session::Abstract::ID::DEFAULT_OPTIONS

Instance Method Summary collapse

Constructor Details

#initialize(session = {}) ⇒ TestSession

Returns a new instance of TestSession.



241
242
243
244
245
# File 'lib/action_controller/test_case.rb', line 241

def initialize(session = {})
  super(nil, nil)
  replace(session.stringify_keys)
  @loaded = true
end

Instance Method Details

#exists?Boolean

Returns:

  • (Boolean)


247
248
249
# File 'lib/action_controller/test_case.rb', line 247

def exists?
  true
end