]> source.dussan.org Git - redmine.git/commitdiff
Adds redmine:plugins:test rake tasks for running plugins tests.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 28 May 2012 10:02:24 +0000 (10:02 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 28 May 2012 10:02:24 +0000 (10:02 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9738 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/tasks/redmine.rake

index 3d8fea59157f64ea3e74054d754dabdd20fb5dff..d4dbdd901291b35083fde00d8176ea37a923f4d4 100644 (file)
@@ -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