aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/Rakefile
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2013-06-21 14:14:36 +0200
committerArun Agrawal <arunagw@gmail.com>2013-06-21 14:14:36 +0200
commitd88b390dfde606b7b9b2de77d8af50ca3ade43bd (patch)
tree50308df43bb9f2e29e40547a94cb420e02bd9588 /actionmailer/Rakefile
parent6f4d9ab823d68fb94a3fc33baae4e37fe7bdf1ce (diff)
downloadrails-d88b390dfde606b7b9b2de77d8af50ca3ade43bd.tar.gz
rails-d88b390dfde606b7b9b2de77d8af50ca3ade43bd.tar.bz2
rails-d88b390dfde606b7b9b2de77d8af50ca3ade43bd.zip
Adding verbose in isolated test.
Diffstat (limited to 'actionmailer/Rakefile')
-rw-r--r--actionmailer/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile
index d1134ba2b5..0865a4bfbe 100644
--- a/actionmailer/Rakefile
+++ b/actionmailer/Rakefile
@@ -16,7 +16,7 @@ namespace :test do
task :isolated do
ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME'))
Dir.glob("test/**/*_test.rb").all? do |file|
- sh(ruby, '-Ilib:test', file)
+ sh(ruby, '-w', '-Ilib:test', file)
end or raise "Failures"
end
end