diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-09-23 09:34:04 -0700 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-09-23 09:34:04 -0700 |
commit | 5dcb269eb8c8730084734e845534d3b9580c40f4 (patch) | |
tree | b9dd0df70acd36cdda25aea89c58f3a0b0751380 /actionpack/test | |
parent | 36699977f2ddbb937aac97998d2d8503499c57e0 (diff) | |
parent | c070cc4ab41fd848fc72f19e7f99d75b1e1fd097 (diff) | |
download | rails-5dcb269eb8c8730084734e845534d3b9580c40f4.tar.gz rails-5dcb269eb8c8730084734e845534d3b9580c40f4.tar.bz2 rails-5dcb269eb8c8730084734e845534d3b9580c40f4.zip |
Merge pull request #3092 from asee/master
Sprockets to use config.assets.prefix, with tests
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/template/sprockets_helper_test.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/actionpack/test/template/sprockets_helper_test.rb b/actionpack/test/template/sprockets_helper_test.rb index c0fb07a29b..a44a16750f 100644 --- a/actionpack/test/template/sprockets_helper_test.rb +++ b/actionpack/test/template/sprockets_helper_test.rb @@ -47,6 +47,16 @@ class SprocketsHelperTest < ActionView::TestCase asset_path("logo.png", :digest => false) end + test "custom_asset_path" do + @config.assets.prefix = '/s' + assert_match %r{/s/logo-[0-9a-f]+.png}, + asset_path("logo.png") + assert_match %r{/s/logo-[0-9a-f]+.png}, + asset_path("logo.png", :digest => true) + assert_match %r{/s/logo.png}, + asset_path("logo.png", :digest => false) + end + test "asset_path with root relative assets" do assert_equal "/images/logo", asset_path("/images/logo") |