-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Features showing issues with exceptions in hooks
cc @mattwynne
- Loading branch information
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Feature: Exceptions in Around Hooks | ||
|
||
Scenario: | ||
Given the standard step definitions | ||
And a file named "features/support/env.rb" with: | ||
""" | ||
Around do |scenario, block| | ||
fail "this should be reported" | ||
block.call | ||
end | ||
""" | ||
And a file named "features/test.feature" with: | ||
""" | ||
Feature: Sample | ||
Scenario: Run a good step | ||
Given this step passes | ||
Scenario: Run a good step | ||
Given this step passes | ||
""" | ||
When I run `cucumber features` | ||
Then it should fail with: | ||
""" | ||
this should be reported | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters