Implement nested tasks

This commit is contained in:
Thibault Jouan
2014-09-24 22:26:22 +00:00
parent ede9ea7111
commit 638f8320bc
5 changed files with 48 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
Feature: nested tasks
Background:
Given a recipe with:
"""
task :outer_task do
task :inner_task do
echo 'OK'
end
end
"""
Scenario: applies nested tasks
When I successfully execute the recipe
Then the output must match /\AOK/