diff options
author | Łukasz Strzałkowski <lukasz.strzalkowski@gmail.com> | 2013-08-13 22:28:51 +0200 |
---|---|---|
committer | Łukasz Strzałkowski <lukasz.strzalkowski@gmail.com> | 2013-08-25 11:40:10 +0200 |
commit | 7620ab08be5cbc3621169d1b0e0bcd628732905b (patch) | |
tree | 65c9b1037a824c17def010323c2c4c06148f9322 /actionview/Rakefile | |
parent | 34a2e486d6ae9c72ea139d47cf32e023a17c0903 (diff) | |
download | rails-7620ab08be5cbc3621169d1b0e0bcd628732905b.tar.gz rails-7620ab08be5cbc3621169d1b0e0bcd628732905b.tar.bz2 rails-7620ab08be5cbc3621169d1b0e0bcd628732905b.zip |
Move actionpack's controller tests
Diffstat (limited to 'actionview/Rakefile')
-rw-r--r-- | actionview/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/Rakefile b/actionview/Rakefile index 1c2fd2a867..e1cb4b5be0 100644 --- a/actionview/Rakefile +++ b/actionview/Rakefile @@ -35,7 +35,7 @@ namespace :test do desc 'ActionPack Integration Tests' Rake::TestTask.new(:action_pack) do |t| t.libs << 'test' - t.test_files = Dir.glob("test/actionpack/*_test.rb") + t.test_files = Dir.glob("test/actionpack/**/*_test.rb") t.warning = true t.verbose = true end |