aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2012-10-09 11:51:44 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2012-10-09 11:51:44 -0500
commit69b1716d2366fe425a21efaecace64c73fa4a5fc (patch)
tree99bab6fad8ec9e7aaf66991a45b068004371ba7a
parent39928c8db23ce555360f866f21ccedfc49bc95d3 (diff)
downloadrails-69b1716d2366fe425a21efaecace64c73fa4a5fc.tar.gz
rails-69b1716d2366fe425a21efaecace64c73fa4a5fc.tar.bz2
rails-69b1716d2366fe425a21efaecace64c73fa4a5fc.zip
Remove duplicated test
-rw-r--r--railties/test/application/assets_test.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/railties/test/application/assets_test.rb b/railties/test/application/assets_test.rb
index 12223287ba..be97855e1a 100644
--- a/railties/test/application/assets_test.rb
+++ b/railties/test/application/assets_test.rb
@@ -396,21 +396,6 @@ module ApplicationTests
assert_no_match(/<script src="\/assets\/xmlhr-([0-z]+)\.js"><\/script>/, last_response.body)
end
- test "assets aren't concatened when compile is true is on and debug_assets params is true" do
- app_with_assets_in_view
- add_to_env_config "production", "config.assets.compile = true"
- add_to_env_config "production", "config.assets.allow_debugging = true"
-
- ENV["RAILS_ENV"] = "production"
- require "#{app_path}/config/environment"
-
- class ::PostsController < ActionController::Base ; end
-
- get '/posts?debug_assets=true'
- assert_match(/<script src="\/assets\/application-([0-z]+)\.js\?body=1"><\/script>/, last_response.body)
- assert_match(/<script src="\/assets\/xmlhr-([0-z]+)\.js\?body=1"><\/script>/, last_response.body)
- end
-
test "assets can access model information when precompiling" do
app_file "app/models/post.rb", "class Post; end"
app_file "app/assets/javascripts/application.js", "//= require_tree ."