Source: show | on GitHub
# File actionpack/test/dispatch/prefix_generation_test.rb, line 315 def self.call(env) env['action_dispatch.routes'] = routes routes.call(env) end
# File actionpack/test/dispatch/prefix_generation_test.rb, line 304 def self.routes @routes ||= begin routes = ActionDispatch::Routing::RouteSet.new routes.draw do mount BlogEngine => "/" end routes end end