ActionDispatch::TestProcess Ruby on Rails 5.1.2 Module ActionDispatch::TestProcess actionpack/lib/action_dispatch/testing/test_process.rb Namespace MODULE ActionDispatch::TestProcess::FixtureFile Methods A assigns C cookies F flash R redirect_to_url S session Included Modules ActionDispatch::TestProcess::FixtureFile Instance Public methods assigns(key = nil) Link Source: show | on GitHub # File actionpack/lib/action_dispatch/testing/test_process.rb, line 26 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 cookies() Link Source: show | on GitHub # File actionpack/lib/action_dispatch/testing/test_process.rb, line 40 def cookies @cookie_jar ||= Cookies::CookieJar.build(@request, @request.cookies) end flash() Link Source: show | on GitHub # File actionpack/lib/action_dispatch/testing/test_process.rb, line 36 def flash @request.flash end redirect_to_url() Link Source: show | on GitHub # File actionpack/lib/action_dispatch/testing/test_process.rb, line 44 def redirect_to_url @response.redirect_url end session() Link Source: show | on GitHub # File actionpack/lib/action_dispatch/testing/test_process.rb, line 32 def session @request.session end