12 lines
248 B
Gherkin
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"
|