From 3348ea625434c95e1b3414a61cd3901e9c8fb818 Mon Sep 17 00:00:00 2001 From: Damien Mathieu <42@dmathieu.com> Date: Mon, 25 Jul 2011 15:25:22 +0200 Subject: [PATCH] provide more explicit test names --- railties/test/application/assets_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/railties/test/application/assets_test.rb b/railties/test/application/assets_test.rb index 810d51b50c..7fb930bd99 100644 --- a/railties/test/application/assets_test.rb +++ b/railties/test/application/assets_test.rb @@ -46,7 +46,7 @@ def app assert defined?(Uglifier) end - test "assets are compiled properly" do + test "precompile creates the file and gives it the original asset's content" do app_file "app/assets/javascripts/application.js", "alert();" app_file "app/assets/javascripts/foo/application.js", "alert();" @@ -61,7 +61,7 @@ def app end end - test "precompile properly performs caching" do + test "precompile appends the md5 hash to files referenced with asset_path" do app_file "app/assets/stylesheets/application.css.erb", "<%= asset_path('rails.png') %>" capture(:stdout) do -- GitLab