producer-core/features/recipe.feature
2013-07-27 18:20:45 +00:00

11 lines
265 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 "hello from recipe"