aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test
diff options
context:
space:
mode:
authorJolyon Pawlyn <jolyon.pawlyn@unboxedconsulting.com>2014-07-12 17:00:09 +0100
committerJolyon Pawlyn <jolyon.pawlyn@unboxedconsulting.com>2014-07-15 08:32:55 +0100
commitd005777469b7182b1a8f657a5b94363b321bef5d (patch)
treee88817ab0d0ddd231b3d09b278d4b7a1906e75e7 /actionview/test
parent073397cf5b2ed525f817d06fb9922c147f136860 (diff)
downloadrails-d005777469b7182b1a8f657a5b94363b321bef5d.tar.gz
rails-d005777469b7182b1a8f657a5b94363b321bef5d.tar.bz2
rails-d005777469b7182b1a8f657a5b94363b321bef5d.zip
Return an absolute instead of relative path from an asset url in the case of the `asset_host` proc returning nil
Diffstat (limited to 'actionview/test')
-rw-r--r--actionview/test/template/asset_tag_helper_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/actionview/test/template/asset_tag_helper_test.rb b/actionview/test/template/asset_tag_helper_test.rb
index 343681b5a9..d789a5ca27 100644
--- a/actionview/test/template/asset_tag_helper_test.rb
+++ b/actionview/test/template/asset_tag_helper_test.rb
@@ -546,6 +546,14 @@ class AssetTagHelperTest < ActionView::TestCase
assert_equal "http://cdn.example.com/images/file.png", image_path("file.png")
end
+ def test_image_url_with_asset_host_proc_returning_nil
+ @controller.config.asset_host = Proc.new { nil }
+ @controller.request = Struct.new(:base_url, :script_name).new("http://www.example.com", nil)
+
+ assert_equal "/images/rails.png", image_path("rails.png")
+ assert_equal "http://www.example.com/images/rails.png", image_url("rails.png")
+ end
+
def test_caching_image_path_with_caching_and_proc_asset_host_using_request
@controller.config.asset_host = Proc.new do |source, request|
if request.ssl?