diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2016-12-17 13:03:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-17 13:03:52 -0500 |
commit | a8a062cbc4c8ee9cb01d8979f1ade9c7c6ebe259 (patch) | |
tree | 779fea4f2c06ea531d361bbe4f6cd86ee9fccf2c /activejob | |
parent | 28e49c711e4694d59247c44d7a70510f99be2af3 (diff) | |
parent | 893069fa02a1f0fbd7bcb0ac213c03c91c698942 (diff) | |
download | rails-a8a062cbc4c8ee9cb01d8979f1ade9c7c6ebe259.tar.gz rails-a8a062cbc4c8ee9cb01d8979f1ade9c7c6ebe259.tar.bz2 rails-a8a062cbc4c8ee9cb01d8979f1ade9c7c6ebe259.zip |
Merge pull request #27339 from utilum/puts_adapter
Improve clarity of AJ tests output
Diffstat (limited to 'activejob')
-rw-r--r-- | activejob/test/helper.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activejob/test/helper.rb b/activejob/test/helper.rb index 758506b3c0..776f7788de 100644 --- a/activejob/test/helper.rb +++ b/activejob/test/helper.rb @@ -5,6 +5,7 @@ ActiveSupport.halt_callback_chains_on_return_false = false GlobalID.app = "aj" @adapter = ENV["AJ_ADAPTER"] || "inline" +puts "Using #{@adapter}" if ENV["AJ_INTEGRATION_TESTS"] require "support/integration/helper" |