Methods
C
I
P
Included Modules
Instance Public methods
conflicting()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 119
def conflicting
  render :text => "application"
end
index()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 103
def index
  render :text => blog_engine.post_path(:id => 1)
end
ivar_usage()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 123
def ivar_usage
  @blog_engine = "Not the engine route helper"
  render :text => blog_engine.post_path(:id => 1)
end
polymorphic_path_for_app()
# File actionpack/test/dispatch/prefix_generation_test.rb, line 111
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 107
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 115
def polymorphic_with_url_for
  render :text => blog_engine.url_for(Post.new)
end