2013-09-07 21:40:25 +00:00

12 lines
248 B
Gherkin

Feature: `echo' task action
Scenario: ouputs text
Given a recipe with:
"""
task :some_task do
echo 'hello'
end
"""
When I successfully execute the recipe
Then the output must contain exactly "hello\n"