diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-01-03 17:49:11 -0200 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-01-03 17:50:24 -0200 |
commit | cbe918093b6ad0994cae0fce014c0d987447d9ab (patch) | |
tree | a3e80be6f2acb1c91b16f9287a10be20a92eb114 /actionpack/test/template | |
parent | 180edc84f1bf848dcd25d194d24c3f8c28889603 (diff) | |
download | rails-cbe918093b6ad0994cae0fce014c0d987447d9ab.tar.gz rails-cbe918093b6ad0994cae0fce014c0d987447d9ab.tar.bz2 rails-cbe918093b6ad0994cae0fce014c0d987447d9ab.zip |
Pass extensions to javascript_path and stylesheet_path helpers. Closes #3417
Diffstat (limited to 'actionpack/test/template')
-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 fb472cfbe5..1c591bdcc2 100644 --- a/actionpack/test/template/sprockets_helper_test.rb +++ b/actionpack/test/template/sprockets_helper_test.rb @@ -158,6 +158,9 @@ class SprocketsHelperTest < ActionView::TestCase test "javascript_path" do assert_match %r{/assets/application-[0-9a-f]+.js}, + javascript_path("application") + + assert_match %r{/assets/application-[0-9a-f]+.js}, javascript_path("application.js") assert_match %r{/assets/application-[0-9a-f]+.js}, @@ -166,6 +169,9 @@ class SprocketsHelperTest < ActionView::TestCase test "stylesheet_path" do assert_match %r{/assets/application-[0-9a-f]+.css}, + stylesheet_path("application") + + assert_match %r{/assets/application-[0-9a-f]+.css}, stylesheet_path("application.css") assert_match %r{/assets/application-[0-9a-f]+.css}, |