From 1e08d11579f0080f086a6bfea1693826a0c09c95 Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Fri, 30 Sep 2005 19:10:20 +0000 Subject: Don't prepend the asset host if the string is already a fully-qualified URL git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2430 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/template/asset_tag_helper_test.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'actionpack/test') diff --git a/actionpack/test/template/asset_tag_helper_test.rb b/actionpack/test/template/asset_tag_helper_test.rb index d5ea05bf37..9a242c6a5a 100644 --- a/actionpack/test/template/asset_tag_helper_test.rb +++ b/actionpack/test/template/asset_tag_helper_test.rb @@ -196,4 +196,14 @@ class AssetTagHelperNonVhostTest < Test::Unit::TestCase assert_nothing_raised { image_tag('') } end + def test_stylesheet_with_asset_host_already_encoded + ActionController::Base.asset_host = "http://foo.example.com" + result = stylesheet_link_tag("http://bar.example.com/stylesheets/style.css") + assert_dom_equal( + %(), + result) + ensure + ActionController::Base.asset_host = "" + end + end -- cgit v1.2.3