Methods
C
G
N
S
Instance Public methods
call_reset_session()
# File actionpack/test/dispatch/session/mem_cache_store_test.rb, line 29
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 25
def get_session_id
  render plain: "#{request.session.id}"
end
get_session_value()
# File actionpack/test/dispatch/session/mem_cache_store_test.rb, line 21
def get_session_value
  render plain: "foo: #{session[:foo].inspect}"
end
no_session_access()
# File actionpack/test/dispatch/session/mem_cache_store_test.rb, line 7
def no_session_access
  head :ok
end
set_serialized_session_value()
# File actionpack/test/dispatch/session/mem_cache_store_test.rb, line 16
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 11
def set_session_value
  session[:foo] = "bar"
  head :ok
end