Implement source keyword feature for recipes

This commit is contained in:
Thibault Jouan
2013-07-28 18:38:00 +00:00
parent 65643e065e
commit c7295fb977
4 changed files with 30 additions and 0 deletions

View File

@@ -8,3 +8,16 @@ Feature: recipe evaluation
When I execute the recipe
Then the exit status must be 0
And the output must contain "hello from recipe"
Scenario: source keyword, requires a recipe file
Given a recipe with:
"""
source 'sourced_recipe'
"""
And a file named "sourced_recipe.rb" with:
"""
puts 'sourced recipe'
"""
When I execute the recipe
Then the exit status must be 0
And the output must contain "sourced recipe"