Turning warnings on in rake test.

master
Zach Dennis 2011-03-19 15:03:39 -04:00
parent 0efb8f21e2
commit c77f0ffad3
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ ADAPTERS.each do |adapter|
namespace :test do
desc "Runs #{adapter} database tests."
Rake::TestTask.new(adapter) do |t|
t.warning = true
t.test_files = FileList["test/adapters/#{adapter}.rb", "test/*_test.rb", "test/active_record/*_test.rb", "test/#{adapter}/**/*_test.rb"]
end
task adapter