Skip to content

Instantly share code, notes, and snippets.

@krukow
Created September 17, 2012 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krukow/3737043 to your computer and use it in GitHub Desktop.
Save krukow/3737043 to your computer and use it in GitHub Desktop.
formatter
cucumber --format html --out a.html --format 'Slowhandcuke::Formatter'
Feature: Addition
Scenario: Basic Addition # features/addition.feature:3
Given a new counter # features/step_definitions/common.rb:1
When I add 3 # features/step_definitions/addition_steps.rb:2
Then the count should be 3 # features/step_definitions/common.rb:7
Scenario: Basic Addition2 # features/addition.feature:10
Given a new counter # features/step_definitions/common.rb:1
When I add 3 # features/step_definitions/addition_steps.rb:2
Then the count must be 3 # features/step_definitions/common.rb:13
2 scenarios (2 passed)
6 steps (6 passed)
0m0.005s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment