Created
October 20, 2010 07:47
-
-
Save bfaloona/635984 to your computer and use it in GitHub Desktop.
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
# bug 672 repros when cucumber is called with line number on feature below, e.g.: | |
$ cucumber features/failing_before_hook_in_background.feature:4 | |
# env.rb | |
Before('@bug672') do |scenario| | |
raise Exception, "Exception from before hook tagged @bug672" | |
end | |
# features/failing_before_hook_in_background.feature | |
@bug672 | |
Feature: Failing before hook example | |
Background: | |
Given this step works | |
And this step works | |
Scenario: failing background | |
Then this step works |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment