producer-core/features/recipes/source.feature
2013-09-07 21:40:25 +00:00

16 lines
349 B
Gherkin

Feature: `source' recipe keyword
Background:
Given a recipe with:
"""
source 'sourced_recipe'
"""
Scenario: requires a recipe file
Given a file named "sourced_recipe.rb" with:
"""
puts 'sourced recipe'
"""
When I successfully execute the recipe
Then the output must contain "sourced recipe"