Class: ActionController::TestSession

Inherits:
Object
  • Object
show all
Defined in:
lib/action_controller/test_process.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ TestSession

Returns a new instance of TestSession.



168
169
170
# File 'lib/action_controller/test_process.rb', line 168

def initialize(attributes = {})
  @attributes = attributes
end

Instance Method Details

#[](key) ⇒ Object



172
173
174
# File 'lib/action_controller/test_process.rb', line 172

def [](key)
  @attributes[key]
end

#[]=(key, value) ⇒ Object



176
177
178
# File 'lib/action_controller/test_process.rb', line 176

def []=(key, value)
  @attributes[key] = value
end

#closeObject



185
# File 'lib/action_controller/test_process.rb', line 185

def close() end

#deleteObject



186
# File 'lib/action_controller/test_process.rb', line 186

def delete() @attributes = {} end

#session_idObject



180
181
182
# File 'lib/action_controller/test_process.rb', line 180

def session_id
  ""
end

#updateObject



184
# File 'lib/action_controller/test_process.rb', line 184

def update() end