summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 1d38e882b0..d9bad16e15 100644
--- a/Rakefile
+++ b/Rakefile
@@ -332,6 +332,10 @@ namespace :features do
Cucumber::Rake::Task.new(:roles) do |t|
t.profile = "client_roles"
end
+
+ Cucumber::Rake::Task.new(:run_interval) do |t|
+ t.profile = "client_run_interval"
+ end
end
desc "Run cucumber tests for the cookbooks"
@@ -370,6 +374,11 @@ namespace :features do
namespace :provider do
+ desc "Run cucumber tests for deploy resources"
+ Cucumber::Rake::Task.new(:deploy) do |t|
+ t.profile = "provider_deploy"
+ end
+
desc "Run cucumber tests for directory resources"
Cucumber::Rake::Task.new(:directory) do |t|
t.profile = "provider_directory"
@@ -404,6 +413,10 @@ namespace :features do
Cucumber::Rake::Task.new(:macports) do |t|
t.profile = "provider_package_macports"
end
+
+ Cucumber::Rake::Task.new(:gems) do |g|
+ g.profile = "provider_package_rubygems"
+ end
end
end
end