From 9cd25767ac13a923aaae9f535d4a7f784f1911cc Mon Sep 17 00:00:00 2001 From: Daniel Aragao Date: Mon, 19 May 2014 11:34:28 +1000 Subject: [PATCH] Task to run vcloud-director tests only. --- Rakefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Rakefile b/Rakefile index b6b2e7722..82e7ed029 100644 --- a/Rakefile +++ b/Rakefile @@ -76,6 +76,7 @@ namespace :test do task :openvz do sh("export FOG_MOCK=#{mock} && bundle exec shindont tests/openvz") end + task :ovirt do sh("export FOG_MOCK=#{mock} && bundle exec shindont tests/ovirt") end @@ -89,6 +90,9 @@ namespace :test do sh("export FOG_MOCK=#{mock} && bundle exec shindont tests/cloudstack") end + task :vcloud_director do + sh("export FOG_MOCK=#{mock} && bundle exec shindont tests/vcloud_director") + end end desc 'Run mocked tests for a specific provider'