Commit 3a69faf1303a1d84f37eb7c0b468f79d6a4965c0
1 parent
9a31421e
Exists in
master
and in
22 other branches
use full task name
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
lib/tasks/plugins_tests.rake
... | ... | @@ -87,8 +87,8 @@ namespace :test do |
87 | 87 | end |
88 | 88 | |
89 | 89 | { :units => :unit , :functionals => :functional , :integration => :integration }.each do |taskname,folder| |
90 | - task taskname => 'db:test:plugins:prepare' do | |
91 | - run_tests taskname, "plugins/{#{enabled_plugins.join(',')}}/test/#{folder}/**/*.rb" | |
90 | + task taskname => 'db:test:plugins:prepare' do |t| | |
91 | + run_tests t.name, "plugins/{#{enabled_plugins.join(',')}}/test/#{folder}/**/*.rb" | |
92 | 92 | end |
93 | 93 | end |
94 | 94 | ... | ... |