Turning off warnings because FactoryGirl spews out crap and it makes it impossible to see anything useful.

This commit is contained in:
Zach Dennis 2011-03-19 15:21:04 -04:00
parent 32a2fe3bce
commit 9e6866fd29

View file

@ -41,7 +41,8 @@ ADAPTERS.each do |adapter|
namespace :test do
desc "Runs #{adapter} database tests."
Rake::TestTask.new(adapter) do |t|
t.warning = true
# FactoryGirl has an issue with warnings, so turn off, so noisy
# 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