Methods
C
G
N
R
S
Instance Public methods
call_reset_session()
# File actionpack/test/dispatch/session/mem_cache_store_test.rb, line 28
def call_reset_session
  session[:bar]
  reset_session
  session[:bar] = "baz"
  head :ok
end
get_session_id()
# File actionpack/test/dispatch/session/mem_cache_store_test.rb, line 24
def get_session_id
  render :text => "#{request.session_options[:id]}"
end
get_session_value()
# File actionpack/test/dispatch/session/mem_cache_store_test.rb, line 20
def get_session_value
  render :text => "foo: #{session[:foo].inspect}"
end
no_session_access()
# File actionpack/test/dispatch/session/mem_cache_store_test.rb, line 6
def no_session_access
  head :ok
end
rescue_action(e)
# File actionpack/test/dispatch/session/mem_cache_store_test.rb, line 35
def rescue_action(e) raise end
set_serialized_session_value()
# File actionpack/test/dispatch/session/mem_cache_store_test.rb, line 15
def set_serialized_session_value
  session[:foo] = SessionAutoloadTest::Foo.new
  head :ok
end
set_session_value()
# File actionpack/test/dispatch/session/mem_cache_store_test.rb, line 10
def set_session_value
  session[:foo] = "bar"
  head :ok
end