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