aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template
diff options
context:
space:
mode:
authorSean Walbran <swalbran@socialcast.com>2013-05-15 09:07:46 -0500
committerSean Walbran <swalbran@socialcast.com>2013-05-15 09:07:46 -0500
commit122ac9fd46d7c9ac198bf980df4f038247eb0ba5 (patch)
tree19c837c5c00390147ea5cfe48fc57fca03a219aa /actionpack/test/template
parente2f3e502291d3d9fa8d5f0f65644c961ec020c69 (diff)
downloadrails-122ac9fd46d7c9ac198bf980df4f038247eb0ba5.tar.gz
rails-122ac9fd46d7c9ac198bf980df4f038247eb0ba5.tar.bz2
rails-122ac9fd46d7c9ac198bf980df4f038247eb0ba5.zip
restore ability to return nil from asset_host proc, add test
Diffstat (limited to 'actionpack/test/template')
-rw-r--r--actionpack/test/template/asset_tag_helper_test.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/actionpack/test/template/asset_tag_helper_test.rb b/actionpack/test/template/asset_tag_helper_test.rb
index 11614a45dc..67f593c22f 100644
--- a/actionpack/test/template/asset_tag_helper_test.rb
+++ b/actionpack/test/template/asset_tag_helper_test.rb
@@ -530,6 +530,17 @@ class AssetTagHelperTest < ActionView::TestCase
assert_equal copy, source
end
+ def test_image_path_with_asset_host_proc_returning_nil
+ @controller.config.asset_host = Proc.new do |source|
+ unless source.end_with?("tiff")
+ "cdn.example.com"
+ end
+ end
+
+ assert_equal "/images/file.tiff", image_path("file.tiff")
+ assert_equal "http://cdn.example.com/images/file.png", image_path("file.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?