Methods
C
R
Class Public methods
call(env)
# File actionpack/test/dispatch/prefix_generation_test.rb, line 40
def self.call(env)
  env['action_dispatch.routes'] = routes
  routes.call(env)
end
routes()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 24
def self.routes
  @routes ||= begin
    routes = ActionDispatch::Routing::RouteSet.new
    routes.draw do
      match "/posts/:id", :to => "inside_engine_generating#show", :as => :post
      match "/posts", :to => "inside_engine_generating#index", :as => :posts
      match "/url_to_application", :to => "inside_engine_generating#url_to_application"
      match "/polymorphic_path_for_engine", :to => "inside_engine_generating#polymorphic_path_for_engine"
      match "/conflicting_url", :to => "inside_engine_generating#conflicting"
      match "/foo", :to => "never#invoked", :as => :named_helper_that_should_be_invoked_only_in_respond_to_test
    end

    routes
  end
end