to work in contexts like rspec before(:all)
Namespace
Methods
Instance Public methods
test_request()
Link
# File actionpack/test/controller/integration_test.rb, line 1110 def test_request with_routing do |routes| routes.draw do ActiveSupport::Deprecation.silence do get ':action' => FooController end end get '/ok' assert_response 200 assert_equal 'ok', response.body assert_equal 'ok', cookies['key'] end end