Created
March 18, 2009 03:15
-
-
Save nkryptic/80919 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Users want to use cucumber, so tests are necessary to verify | |
it is all working as expected | |
Feature: Using the Console Formatter | |
In order to verify this error | |
I want to run this feature using the progress format | |
So that it can be fixed | |
Scenario: A normal feature | |
Given I have a pending step | |
When I run this feature with the progress format | |
Then I should get a no method error for 'backtrace_line' | |
This file contains hidden or 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
Given /^I have a pending step$/ | |
pending | |
end | |
When /^I run this feature with the progress format$/ | |
pending | |
end | |
Then /^I should get a no method error for 'backtrace_line'$/ | |
pending | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment