Skip to content

Instantly share code, notes, and snippets.

@johnivanoff
Created March 8, 2012 01:55
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 johnivanoff/1997981 to your computer and use it in GitHub Desktop.
Save johnivanoff/1997981 to your computer and use it in GitHub Desktop.
$ cucumber --profile wip
Using the wip profile...
Feature: Manage locations
In order to manage locations
As a user
I want to create and edit my locations.
@wip
Scenario Outline: Edit a location # features/managing_locations.feature:31
Given I am on the <language> site # features/step_definitions/location_steps.rb:5
And there is a location named "<location>" # features/step_definitions/location_steps.rb:1
When I "<action>" the location "<field>" to "<new_name>" # features/managing_locations.feature:34
Then I should see "<new_name>" # features/step_definitions/location_steps.rb:13
Examples:
| language | location | action | field | new_name |
| en | location 1 | Update | Name | location has changed |
1 scenario (1 undefined)
4 steps (1 skipped, 1 undefined, 2 passed)
0m1.289s
You can implement step definitions for undefined steps with these snippets:
When /^I "([^"]*)" the location "([^"]*)" to "([^"]*)"$/ do |arg1, arg2, arg3|
pending # express the regexp above with the code you wish you had
end
The --wip switch was used, so the failures were expected. All is good.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment