summaryrefslogtreecommitdiffstats
path: root/lib/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/redmine.rake30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/tasks/redmine.rake b/lib/tasks/redmine.rake
index 3d8fea591..d4dbdd901 100644
--- a/lib/tasks/redmine.rake
+++ b/lib/tasks/redmine.rake
@@ -82,6 +82,36 @@ namespace :redmine do
abort "Plugin #{name} was not found."
end
end
+
+ desc 'Runs the plugins tests.'
+ task :test do
+ Rake::Task["redmine:plugins:test:units"].invoke
+ Rake::Task["redmine:plugins:test:functionals"].invoke
+ Rake::Task["redmine:plugins:test:integration"].invoke
+ end
+
+ namespace :test do
+ desc 'Runs the plugins unit tests.'
+ Rake::TestTask.new :units => "db:test:prepare" do |t|
+ t.libs << "test"
+ t.verbose = true
+ t.test_files = FileList["plugins/#{ENV['NAME'] || '*'}/test/unit/*_test.rb"]
+ end
+
+ desc 'Runs the plugins functional tests.'
+ Rake::TestTask.new :functionals => "db:test:prepare" do |t|
+ t.libs << "test"
+ t.verbose = true
+ t.test_files = FileList["plugins/#{ENV['NAME'] || '*'}/test/functional/*_test.rb"]
+ end
+
+ desc 'Runs the plugins integration tests.'
+ Rake::TestTask.new :integration => "db:test:prepare" do |t|
+ t.libs << "test"
+ t.verbose = true
+ t.test_files = FileList["plugins/#{ENV['NAME'] || '*'}/test/integration/*_test.rb"]
+ end
+ end
end
end