aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/Rakefile
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-09-05 18:24:58 -0500
committerJoshua Peek <josh@joshpeek.com>2009-09-05 18:24:58 -0500
commitca2f2d1800111d3d816176171d7c2ac12e373de1 (patch)
tree431b9e484916c0351c91d3ce48412658c11a037a /activesupport/Rakefile
parent87c93da440b099856fe3437c5bb269f01fb95379 (diff)
downloadrails-ca2f2d1800111d3d816176171d7c2ac12e373de1.tar.gz
rails-ca2f2d1800111d3d816176171d7c2ac12e373de1.tar.bz2
rails-ca2f2d1800111d3d816176171d7c2ac12e373de1.zip
Turn warnings on for AS isolated tests
Diffstat (limited to 'activesupport/Rakefile')
-rw-r--r--activesupport/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index 539ce2720e..91c874d729 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -24,7 +24,7 @@ Rake::TestTask.new { |t|
task :isolated_test do
ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME'))
Dir['test/**/*_test.rb'].all? do |file|
- system(ruby, '-Ilib:test', file)
+ system(ruby, '-w', '-Ilib:test', file)
end or raise "Failures"
end