mirror of https://github.com/rails/rails
Merge pull request #2247 from dmathieu/test_precompile_caching
Add test checking that precompiling assets performs caching
This commit is contained in:
commit
451f63b42e
|
@ -8,7 +8,7 @@ module ApplicationTests
|
|||
include Rack::Test::Methods
|
||||
|
||||
def setup
|
||||
build_app
|
||||
build_app(:initializers => true)
|
||||
boot_rails
|
||||
end
|
||||
|
||||
|
@ -61,6 +61,16 @@ module ApplicationTests
|
|||
end
|
||||
end
|
||||
|
||||
test "precompile properly performs caching" do
|
||||
app_file "app/assets/stylesheets/application.css.erb", "<%= asset_path('rails.png') %>"
|
||||
|
||||
capture(:stdout) do
|
||||
Dir.chdir(app_path){ `bundle exec rake assets:precompile` }
|
||||
end
|
||||
file = Dir["#{app_path}/public/assets/application-*.css"].first
|
||||
assert_match /\/assets\/rails-([0-z]+)\.png/, File.read(file)
|
||||
end
|
||||
|
||||
test "assets are cleaned up properly" do
|
||||
app_file "public/assets/application.js", "alert();"
|
||||
app_file "public/assets/application.css", "a { color: green; }"
|
||||
|
|
Loading…
Reference in New Issue