aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/url_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/url_test.rb')
-rw-r--r--actionpack/test/controller/url_test.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/actionpack/test/controller/url_test.rb b/actionpack/test/controller/url_test.rb
index 8315830776..f7f08a2fe5 100644
--- a/actionpack/test/controller/url_test.rb
+++ b/actionpack/test/controller/url_test.rb
@@ -453,4 +453,25 @@ class UrlTest < Test::Unit::TestCase
url.rewrite({ :controller => "msg", :action_prefix => "allous", :action => "new" })
)
end
+
+ def test_clean_application_prefix
+ assert_equal "http://www.singlefile.com/namespace/library/books/ISBN/0743536703/show",
+ @library_url.rewrite(:application_prefix => "/namespace")
+ end
+
+ def test_clean_application_prefix_with_controller_prefix
+ assert_equal "http://www.singlefile.com/namespace/shop/",
+ @library_url.rewrite(:application_prefix => "/namespace",
+ :controller_prefix => "shop" )
+ end
+
+ def test_blank_application_prefix
+ assert_equal "http://www.singlefile.com/library/books/ISBN/0743536703/show",
+ @library_url.rewrite(:application_prefix => "")
+ end
+
+ def test_nil_application_prefix
+ assert_equal "http://www.singlefile.com/library/books/ISBN/0743536703/show",
+ @library_url.rewrite(:application_prefix => nil)
+ end
end