aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/tasks/testing.rake
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-02-01 20:12:36 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-02-01 20:12:36 +0000
commitaa7859c9768f4447b4f67808b2c92f4d0cb48cb2 (patch)
treecf6e5dda7dac0704739d0b5fd14b7ac99e3e307b /railties/lib/tasks/testing.rake
parent593b1b837d24e61ea8f5386d66669585f3c14d5a (diff)
downloadrails-aa7859c9768f4447b4f67808b2c92f4d0cb48cb2.tar.gz
rails-aa7859c9768f4447b4f67808b2c92f4d0cb48cb2.tar.bz2
rails-aa7859c9768f4447b4f67808b2c92f4d0cb48cb2.zip
Plugins may be symlinked in vendor/plugins. Closes #4245.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6101 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib/tasks/testing.rake')
-rw-r--r--railties/lib/tasks/testing.rake4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/tasks/testing.rake b/railties/lib/tasks/testing.rake
index 4f0292c854..59ce7af888 100644
--- a/railties/lib/tasks/testing.rake
+++ b/railties/lib/tasks/testing.rake
@@ -108,10 +108,10 @@ namespace :test do
if ENV['PLUGIN']
t.pattern = "vendor/plugins/#{ENV['PLUGIN']}/test/**/*_test.rb"
else
- t.pattern = 'vendor/plugins/**/test/**/*_test.rb'
+ t.pattern = 'vendor/plugins/*/**/test/**/*_test.rb'
end
t.verbose = true
end
- Rake::Task['test:plugins'].comment = "Run the plugin tests in vendor/plugins/**/test (or specify with PLUGIN=name)"
+ Rake::Task['test:plugins'].comment = "Run the plugin tests in vendor/plugins/*/**/test (or specify with PLUGIN=name)"
end