diff --git a/features/actions/echo.feature b/features/actions/echo.feature index 3088cfb..5a97504 100644 --- a/features/actions/echo.feature +++ b/features/actions/echo.feature @@ -1,11 +1,11 @@ Feature: `echo' task action - Scenario: ouputs text + Scenario: prints text on standard output Given a recipe with: """ - task :some_task do + task :say_hello do echo 'hello' end """ When I successfully execute the recipe - Then the output must contain exactly "hello\n" + Then the output must match /\Ahello\n/