Methods
C
I
P
Included Modules
Instance Public methods
conflicting()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 125
def conflicting
  render :text => "application"
end
index()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 109
def index
  render :text => blog_engine.post_path(:id => 1)
end
polymorphic_path_for_app()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 117
def polymorphic_path_for_app
  render :text => polymorphic_path(Post.new)
end
polymorphic_path_for_engine()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 113
def polymorphic_path_for_engine
  render :text => blog_engine.polymorphic_path(Post.new)
end
polymorphic_with_url_for()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 121
def polymorphic_with_url_for
  render :text => blog_engine.url_for(Post.new)
end