Remove features checking ruby evaluation

This commit is contained in:
Thibault Jouan 2014-05-29 14:21:15 +00:00
parent bff6b85e8e
commit 237e6db740
2 changed files with 0 additions and 20 deletions

View File

@ -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"

View File

@ -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"