diff options
author | jacott <geoffjacobsen@gmail.com> | 2011-05-28 18:19:11 +1200 |
---|---|---|
committer | jacott <geoffjacobsen@gmail.com> | 2011-05-28 18:19:11 +1200 |
commit | db5adf2d42d16859cde8f40e7b0b7fb41167cff4 (patch) | |
tree | 2a26a8a8f106daf91d70fc30ddbee16ec8e59475 /actionpack/test | |
parent | b7baf1211f83f7dd008f156f1f5cfc62b52bf458 (diff) | |
download | rails-db5adf2d42d16859cde8f40e7b0b7fb41167cff4.tar.gz rails-db5adf2d42d16859cde8f40e7b0b7fb41167cff4.tar.bz2 rails-db5adf2d42d16859cde8f40e7b0b7fb41167cff4.zip |
fixed asset_paths when called from sprockets for relative_url_root
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/template/sprockets_helper_test.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/test/template/sprockets_helper_test.rb b/actionpack/test/template/sprockets_helper_test.rb index b26315083c..c2ee7f9582 100644 --- a/actionpack/test/template/sprockets_helper_test.rb +++ b/actionpack/test/template/sprockets_helper_test.rb @@ -57,6 +57,12 @@ class SprocketsHelperTest < ActionView::TestCase asset_path("http://www.example.com/video/play.mp4") end + test "asset path with relavtive url root" do + @controller.config.relative_url_root = "/collaboration/hieraki" + assert_equal "/collaboration/hieraki/images/logo.gif", + asset_path("/images/logo.gif") + end + test "javascript path" do assert_equal "/assets/application-d41d8cd98f00b204e9800998ecf8427e.js", asset_path(:application, "js") |