aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template
diff options
context:
space:
mode:
authorSam Pohlenz <sam@sampohlenz.com>2011-07-01 21:56:41 +0930
committerSam Pohlenz <sam@sampohlenz.com>2011-07-01 21:56:41 +0930
commit0613f3bcdbd077c3d961f274c390f39f1cd19a31 (patch)
tree8ff0d91943c0d3966a325f3e592f344977c36a18 /actionpack/test/template
parentd5f7253206122296a050d8fe2376990710859947 (diff)
downloadrails-0613f3bcdbd077c3d961f274c390f39f1cd19a31.tar.gz
rails-0613f3bcdbd077c3d961f274c390f39f1cd19a31.tar.bz2
rails-0613f3bcdbd077c3d961f274c390f39f1cd19a31.zip
Add tests for alternate asset prefix/environment
Diffstat (limited to 'actionpack/test/template')
-rw-r--r--actionpack/test/template/sprockets_helper_test.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/actionpack/test/template/sprockets_helper_test.rb b/actionpack/test/template/sprockets_helper_test.rb
index 6dc9a2a743..f11d1bba15 100644
--- a/actionpack/test/template/sprockets_helper_test.rb
+++ b/actionpack/test/template/sprockets_helper_test.rb
@@ -197,4 +197,16 @@ class SprocketsHelperTest < ActionView::TestCase
assert_equal "<link href=\"/assets/style-d41d8cd98f00b204e9800998ecf8427e.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" />\n<link href=\"/assets/extra-d41d8cd98f00b204e9800998ecf8427e.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" />",
stylesheet_link_tag("style", "extra")
end
+
+ test "alternate asset prefix" do
+ stubs(:asset_prefix).returns("/themes/test")
+ assert_equal "/themes/test/style-d41d8cd98f00b204e9800998ecf8427e.css", asset_path("style", "css")
+ end
+
+ test "alternate asset environment" do
+ assets = Sprockets::Environment.new
+ assets.paths << FIXTURES.join("sprockets/alternate/stylesheets")
+ stubs(:asset_environment).returns(assets)
+ assert_equal "/assets/style-df0b97ad35a8e1f7f61097461f77c19a.css", asset_path("style", "css")
+ end
end