From 747573c52ea32e4daeb5839b1929030a39f6f0e3 Mon Sep 17 00:00:00 2001 From: Thibault Jouan Date: Wed, 15 Apr 2015 03:27:05 +0000 Subject: [PATCH] Fix cucumber steps description (s/should/must/) --- features/session/termination.feature | 2 +- features/steps/run_steps.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/features/session/termination.feature b/features/session/termination.feature index 6cdd522..135b056 100644 --- a/features/session/termination.feature +++ b/features/session/termination.feature @@ -3,4 +3,4 @@ Feature: program termination Scenario: terminates when requested to quit Given uhwm is running When I tell uhwm to quit - Then uhwm should terminate successfully + Then uhwm must terminate successfully diff --git a/features/steps/run_steps.rb b/features/steps/run_steps.rb index e8f9026..d72b716 100644 --- a/features/steps/run_steps.rb +++ b/features/steps/run_steps.rb @@ -27,6 +27,6 @@ Then /^the exit status must be (\d+)$/ do |exit_status| assert_exit_status exit_status.to_i end -Then /^uhwm should terminate successfully$/ do +Then /^uhwm must terminate successfully$/ do assert_exit_status 0 end