diff options
author | Arun Agrawal <arunagw@gmail.com> | 2013-06-21 14:12:13 +0200 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2013-06-21 14:12:13 +0200 |
commit | 6f4d9ab823d68fb94a3fc33baae4e37fe7bdf1ce (patch) | |
tree | b94e6b7f27ff97cff34d1f8f887b20f9016a97d2 /actionview | |
parent | dcf7738b7dcbb20e54b5188862e02d44d4309a56 (diff) | |
download | rails-6f4d9ab823d68fb94a3fc33baae4e37fe7bdf1ce.tar.gz rails-6f4d9ab823d68fb94a3fc33baae4e37fe7bdf1ce.tar.bz2 rails-6f4d9ab823d68fb94a3fc33baae4e37fe7bdf1ce.zip |
Adding verbose mode to test_with_ar_integration
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/Rakefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionview/Rakefile b/actionview/Rakefile index 087b249dfe..f695ed3c4d 100644 --- a/actionview/Rakefile +++ b/actionview/Rakefile @@ -39,6 +39,8 @@ desc 'ActiveRecord Integration Tests' Rake::TestTask.new(:test_active_record_integration) do |t| t.libs << 'test' t.test_files = Dir.glob("test/activerecord/*_test.rb") + t.warning = true + t.verbose = true end spec = eval(File.read('actionview.gemspec')) |