diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-10-20 08:54:38 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-10-20 08:54:38 +0200 |
commit | d207adb24ca6d2448c2a8fb409bf62576c8044e0 (patch) | |
tree | cd27592a2a32e7deb2f84b40fabf0e1f1427fd37 /activejob/Rakefile | |
parent | a702d5aad5e533291267443ad523691e52aa0bd7 (diff) | |
parent | 86608537701fb52d3515049efac8646a6914e461 (diff) | |
download | rails-d207adb24ca6d2448c2a8fb409bf62576c8044e0.tar.gz rails-d207adb24ca6d2448c2a8fb409bf62576c8044e0.tar.bz2 rails-d207adb24ca6d2448c2a8fb409bf62576c8044e0.zip |
Merge pull request #17324 from vipulnsward/activejob-warnings
Enable emitting of warnings from ActiveJob tests.
Diffstat (limited to 'activejob/Rakefile')
-rw-r--r-- | activejob/Rakefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activejob/Rakefile b/activejob/Rakefile index a66df8939e..7e66860b36 100644 --- a/activejob/Rakefile +++ b/activejob/Rakefile @@ -35,6 +35,7 @@ namespace :test do t.libs << 'test' t.test_files = FileList['test/cases/**/*_test.rb'] t.verbose = true + t.warning = true t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION) end @@ -53,6 +54,7 @@ namespace :test do t.libs << 'test' t.test_files = FileList['test/integration/**/*_test.rb'] t.verbose = true + t.warning = true t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION) end end |