producer-core/features/recipes/evaluation.feature
2013-08-13 00:42:14 +00:00

11 lines
275 B
Gherkin

Feature: recipe evaluation
Scenario: evaluates ruby code in a recipe
Given a recipe with:
"""
puts 'hello from recipe'
"""
When I execute the recipe
Then the exit status must be 0
And the output must contain exactly "hello from recipe\n"