aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/Rakefile
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-09-10 11:03:32 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2008-09-10 11:03:32 -0700
commitc19c0e7872e65094b14bc08e24d19eebd9d1562a (patch)
tree877917291271aaf6bf1fc149b806037f7263ba4f /actionpack/Rakefile
parent9994f0d90248db7d7eae36f0b597a15e8a427612 (diff)
downloadrails-c19c0e7872e65094b14bc08e24d19eebd9d1562a.tar.gz
rails-c19c0e7872e65094b14bc08e24d19eebd9d1562a.tar.bz2
rails-c19c0e7872e65094b14bc08e24d19eebd9d1562a.zip
Disable warnings in AP tests
Diffstat (limited to 'actionpack/Rakefile')
-rw-r--r--actionpack/Rakefile15
1 files changed, 8 insertions, 7 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 65a04dcd00..0ee9382e89 100644
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -25,15 +25,16 @@ task :default => [ :test ]
desc "Run all unit tests"
task :test => [:test_action_pack, :test_active_record_integration]
-Rake::TestTask.new(:test_action_pack) { |t|
+Rake::TestTask.new(:test_action_pack) do |t|
t.libs << "test"
-# make sure we include the tests in alphabetical order as on some systems
-# this will not happen automatically and the tests (as a whole) will error
- t.test_files=Dir.glob( "test/[cft]*/**/*_test.rb" ).sort
-# t.pattern = 'test/*/*_test.rb'
+
+ # make sure we include the tests in alphabetical order as on some systems
+ # this will not happen automatically and the tests (as a whole) will error
+ t.test_files = Dir.glob( "test/[cft]*/**/*_test.rb" ).sort
+
t.verbose = true
- t.warning = true
-}
+ #t.warning = true
+end
desc 'ActiveRecord Integration Tests'
Rake::TestTask.new(:test_active_record_integration) do |t|