aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/Rakefile
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-09-19 13:14:22 -0500
committerJoshua Peek <josh@joshpeek.com>2009-09-19 13:14:22 -0500
commitf1c8f07be8c055fdcfd5b5a08b5781e21f24e428 (patch)
tree121f62a9b76ea3803fb44b2cdf0982d80485971e /actionpack/Rakefile
parent69192bee2da198de1bf59fbc0646e59f68e10751 (diff)
downloadrails-f1c8f07be8c055fdcfd5b5a08b5781e21f24e428.tar.gz
rails-f1c8f07be8c055fdcfd5b5a08b5781e21f24e428.tar.bz2
rails-f1c8f07be8c055fdcfd5b5a08b5781e21f24e428.zip
Follow short name convention for test folder and just call it "abstract"
Diffstat (limited to 'actionpack/Rakefile')
-rw-r--r--actionpack/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 0d8362ad0b..aaf1c7f926 100644
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -62,7 +62,7 @@ end
desc 'New Controller Tests'
Rake::TestTask.new(:test_new_base) do |t|
t.libs << 'test'
- t.test_files = Dir.glob("test/{abstract_controller,new_base}/*_test.rb")
+ t.test_files = Dir.glob("test/{abstract,new_base}/*_test.rb")
t.verbose = true
end