Namespace
Methods
S
T
W
Included Modules
Instance Public methods
setup()
# File rails/actionpack/test/template/url_helper_test.rb, line 335
def setup
  @request    = ActionController::TestRequest.new
  @response   = ActionController::TestResponse.new
  @controller = TasksController.new
end
Instance Protected methods
with_restful_routing()
# File rails/actionpack/test/template/url_helper_test.rb, line 358
def with_restful_routing
  with_routing do |set|
    set.draw do |map|
      map.resources :tasks
    end
    yield
  end
end