aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/Rakefile
diff options
context:
space:
mode:
authorutilum <oz@utilum.com>2018-05-23 22:52:15 +0200
committerutilum <oz@utilum.com>2018-05-23 23:05:03 +0200
commita48f6a5d9f914c5a0ca8ea3fd06d5ffaff5ec2df (patch)
tree731137eefe87bdc16b07dd793f671fee00acf9f9 /activejob/Rakefile
parent4d43b05881265ee02cb4b7ab37d7e1fa49559184 (diff)
downloadrails-a48f6a5d9f914c5a0ca8ea3fd06d5ffaff5ec2df.tar.gz
rails-a48f6a5d9f914c5a0ca8ea3fd06d5ffaff5ec2df.tar.bz2
rails-a48f6a5d9f914c5a0ca8ea3fd06d5ffaff5ec2df.zip
Enable warnings in all test tasks
Also normalize AJ task use t, like all other Rails test tasks.
Diffstat (limited to 'activejob/Rakefile')
-rw-r--r--activejob/Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/activejob/Rakefile b/activejob/Rakefile
index b4da75adab..0f88b22e8d 100644
--- a/activejob/Rakefile
+++ b/activejob/Rakefile
@@ -38,7 +38,7 @@ namespace :test do
t.libs << "test"
t.test_files = FileList["test/cases/**/*_test.rb"]
t.verbose = true
- t.warning = false
+ t.warning = true
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end
@@ -56,7 +56,7 @@ namespace :test do
t.libs << "test"
t.test_files = FileList["test/integration/**/*_test.rb"]
t.verbose = true
- t.warning = false
+ t.warning = true
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end
end