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"