aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/prefix_generation_test.rb
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2012-11-04 14:59:15 +0100
committerYves Senn <yves.senn@gmail.com>2012-11-08 21:26:26 +0100
commitd12e75340996f174649ed584b062f46aa030e0dd (patch)
tree8eec91871e56416f7d7c7bdec3644f9c5cddbc0e /actionpack/test/dispatch/prefix_generation_test.rb
parent70f384e0196fd4f8bcb7dea05af8611df4578563 (diff)
downloadrails-d12e75340996f174649ed584b062f46aa030e0dd.tar.gz
rails-d12e75340996f174649ed584b062f46aa030e0dd.tar.bz2
rails-d12e75340996f174649ed584b062f46aa030e0dd.zip
backport, handle trailing slash with engines
this is a backport of #8115 to fix #7842
Diffstat (limited to 'actionpack/test/dispatch/prefix_generation_test.rb')
-rw-r--r--actionpack/test/dispatch/prefix_generation_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/prefix_generation_test.rb b/actionpack/test/dispatch/prefix_generation_test.rb
index bd5b5edab0..88dc2c093b 100644
--- a/actionpack/test/dispatch/prefix_generation_test.rb
+++ b/actionpack/test/dispatch/prefix_generation_test.rb
@@ -248,6 +248,11 @@ module TestGenerationPrefix
assert_equal "/something/", app_object.root_path
end
+ test "[OBJECT] generating application's route includes default_url_options[:trailing_slash]" do
+ RailsApplication.routes.default_url_options[:trailing_slash] = true
+ assert_equal "/awesome/blog/posts", engine_object.posts_path
+ end
+
test "[OBJECT] generating engine's route with url_for" do
path = engine_object.url_for(:controller => "inside_engine_generating",
:action => "show",