Methods
C
I
P
S
U
Included Modules
Instance Public methods
conflicting()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 100
def conflicting
  render :text => "engine"
end
index()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 81
def index
  render :text => posts_path
end
polymorphic_path_for_engine()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 96
def polymorphic_path_for_engine
  render :text => polymorphic_path(Post.new)
end
show()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 85
def show
  render :text => post_path(:id => params[:id])
end
url_to_application()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 89
def url_to_application
  path = main_app.url_for(:controller => "outside_engine_generating",
                          :action => "index",
                          :only_path => true)
  render :text => path
end