aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2014-05-21 15:50:29 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2014-05-21 15:50:29 +0200
commit1513705b9d8d1d77d84ef56cf7b14ba33b8ecfa1 (patch)
treed31cc37c690cfe9a9954f873d10d196c15e00cfa /test
parent69607a8e3e4bf92f0ec6d7ce8521bc011b51c7d8 (diff)
downloadrails-1513705b9d8d1d77d84ef56cf7b14ba33b8ecfa1.tar.gz
rails-1513705b9d8d1d77d84ef56cf7b14ba33b8ecfa1.tar.bz2
rails-1513705b9d8d1d77d84ef56cf7b14ba33b8ecfa1.zip
Show which adapter the tests are currently run for
Diffstat (limited to 'test')
-rw-r--r--test/helper.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/helper.rb b/test/helper.rb
index 4a7571ada4..0e51396517 100644
--- a/test/helper.rb
+++ b/test/helper.rb
@@ -6,6 +6,8 @@ $LOAD_PATH << File.dirname(__FILE__) + "/../lib"
require 'active_job'
require "adapters/#{ENV['AJADAPTER'] || 'inline'}"
+puts "Testing using #{ENV['AJADAPTER'] || 'inline'}"
require 'active_support/testing/autorun'
+
ActiveJob::Base.logger.level = Logger::ERROR