Allow access to registry from conditions

This commit is contained in:
Thibault Jouan
2014-09-25 00:01:03 +00:00
parent d335abce57
commit 77582ef843
4 changed files with 23 additions and 0 deletions

View File

@@ -24,3 +24,13 @@ Feature: key/value registry
"""
When I successfully execute the recipe
Then the output must contain "some_value"
Scenario: `get' keyword fetches a value from a condition
Given a recipe with:
"""
set :some_key, 'some_value'
task(:ok) { condition { get :some_key }; echo get :some_key }
"""
When I successfully execute the recipe
Then the output must contain "some_value"