module ActionDispatch::TestProcess
Inherits From
Public instance methods
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_process.rb, line 31
def assigns(key = nil)
raise NoMethodError,
'assigns has been extracted to a gem. To continue using it,
add `gem "rails-controller-testing"` to your Gemfile.'
end
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_process.rb, line 45
def cookies
@cookie_jar ||= Cookies::CookieJar.build(@request, @request.cookies)
end
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_process.rb, line 41
def flash
@request.flash
end
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_process.rb, line 49
def redirect_to_url
@response.redirect_url
end
Source code GitHub
# File actionpack/lib/action_dispatch/testing/test_process.rb, line 37
def session
@request.session
end