diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2018-05-23 17:15:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-23 17:15:02 -0400 |
commit | 2e6e8142a2bdc0cd6153f7f4adb7421db814498c (patch) | |
tree | 731137eefe87bdc16b07dd793f671fee00acf9f9 /activestorage | |
parent | 4d43b05881265ee02cb4b7ab37d7e1fa49559184 (diff) | |
parent | a48f6a5d9f914c5a0ca8ea3fd06d5ffaff5ec2df (diff) | |
download | rails-2e6e8142a2bdc0cd6153f7f4adb7421db814498c.tar.gz rails-2e6e8142a2bdc0cd6153f7f4adb7421db814498c.tar.bz2 rails-2e6e8142a2bdc0cd6153f7f4adb7421db814498c.zip |
Merge pull request #32969 from utilum/enable_warnings
Enable warnings in all test tasks
Diffstat (limited to 'activestorage')
-rw-r--r-- | activestorage/Rakefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/activestorage/Rakefile b/activestorage/Rakefile index 7dc69e04ea..2e86d3d860 100644 --- a/activestorage/Rakefile +++ b/activestorage/Rakefile @@ -4,12 +4,12 @@ require "bundler/setup" require "bundler/gem_tasks" require "rake/testtask" -Rake::TestTask.new do |test| - test.libs << "app/controllers" - test.libs << "test" - test.test_files = FileList["test/**/*_test.rb"] - test.verbose = true - test.warning = false +Rake::TestTask.new do |t| + t.libs << "app/controllers" + t.libs << "test" + t.test_files = FileList["test/**/*_test.rb"] + t.verbose = true + t.warning = true end task :package |