Namespace
Methods
A
Included Modules
Constants
Routes = ActionDispatch::Routing::RouteSet.new.tap do |app| app.draw do scope :module => "test_named_route_url_helpers" do get "/categories/:id" => 'categories#show', :as => :category get "/products/:id" => 'products#show', :as => :product end end end
 
APP = build_app Routes
 
Instance Public methods
app()
# File actionpack/test/dispatch/routing_test.rb, line 4269
def app; APP end