Class: ActionController::TestSession
- Inherits:
-
Rack::Session::Abstract::SessionHash
- Object
- Rack::Session::Abstract::SessionHash
- ActionController::TestSession
- 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
- #exists? ⇒ Boolean
-
#initialize(session = {}) ⇒ TestSession
constructor
A new instance of TestSession.
Constructor Details
#initialize(session = {}) ⇒ TestSession
Returns a new instance of TestSession.
208 209 210 211 212 |
# File 'lib/action_controller/test_case.rb', line 208 def initialize(session = {}) @env, @by = nil, nil replace(session.stringify_keys) @loaded = true end |
Instance Method Details
#exists? ⇒ Boolean
214 215 216 |
# File 'lib/action_controller/test_case.rb', line 214 def exists? true end |