nkryptic (owner)

Revisions

gist: 80919 Download_button fork
public
Public Clone URL: git://gist.github.com/80919.git
Embed All Files: show embed
console_formatter_error.feature #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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'
 
 
console_formatter_steps.rb #
1
2
3
4
5
6
7
8
9
10
11
12
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