From 237e6db740cf74163facc4d406634c01637b055b Mon Sep 17 00:00:00 2001 From: Thibault Jouan Date: Thu, 29 May 2014 14:21:15 +0000 Subject: [PATCH] Remove features checking ruby evaluation --- features/recipe_evaluation.feature | 9 --------- features/task_evaluation.feature | 11 ----------- 2 files changed, 20 deletions(-) delete mode 100644 features/recipe_evaluation.feature delete mode 100644 features/task_evaluation.feature diff --git a/features/recipe_evaluation.feature b/features/recipe_evaluation.feature deleted file mode 100644 index 363a989..0000000 --- a/features/recipe_evaluation.feature +++ /dev/null @@ -1,9 +0,0 @@ -Feature: recipe evaluation - - Scenario: evaluates ruby code in a recipe - Given a recipe with: - """ - puts 'hello from recipe' - """ - When I successfully execute the recipe - Then the output must contain exactly "hello from recipe\n" diff --git a/features/task_evaluation.feature b/features/task_evaluation.feature deleted file mode 100644 index 6a5632a..0000000 --- a/features/task_evaluation.feature +++ /dev/null @@ -1,11 +0,0 @@ -Feature: task evaluation - - Scenario: evaluates ruby code in task blocks - Given a recipe with: - """ - task :hello do - puts 'hello from recipe' - end - """ - When I successfully execute the recipe - Then the output must contain exactly "hello from recipe\n"