Skip to content

Instantly share code, notes, and snippets.

@nkryptic
Created March 18, 2009 03:15
Show Gist options
  • Save nkryptic/80919 to your computer and use it in GitHub Desktop.
Save nkryptic/80919 to your computer and use it in GitHub Desktop.
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'
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