summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAdam Jacob <adam@opscode.com>2009-06-26 20:05:10 -0700
committerAJ Christensen <aj@opscode.com>2009-06-29 12:06:59 -0700
commit3a27409d8d23e9a9f3371c9ca023c280d4cffbcc (patch)
treef652c33318ead28e5481c0b23be35517dd6abb41 /Rakefile
parentf300ecfa7212f43382762ee49b34e1c932c659aa (diff)
downloadchef-3a27409d8d23e9a9f3371c9ca023c280d4cffbcc.tar.gz
Adding a guard block to check seen_recipes, to ensure that we never run the same recipe twice; fixes CHEF-411
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index c47215ea3d..3c6ab24f49 100644
--- a/Rakefile
+++ b/Rakefile
@@ -139,6 +139,16 @@ namespace :features do
t.profile = "search"
end
+ Cucumber::Rake::Task.new(:language) do |t|
+ t.profile = "language"
+ end
+
+ namespace :language do
+ Cucumber::Rake::Task.new(:recipe_include) do |t|
+ t.profile = "recipe_inclusion"
+ end
+ end
+
namespace :provider do
Cucumber::Rake::Task.new(:remote_file) do |t|
t.profile = "provider_remote_file"