Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@johnivanoff
Created January 29, 2012 18:18
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/1699967 to your computer and use it in GitHub Desktop.
Save johnivanoff/1699967 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: Create a new location # features/manage_locations.feature:19
Given I am on new location page # features/step_definitions/location_steps.rb:22
And I fill in "Name" with "Shiny location" # features/step_definitions/location_steps.rb:26
When I press "Create" # features/step_definitions/location_steps.rb:30
Then I should see "Shiny location" # features/step_definitions/location_steps.rb:9
@wip
Scenario: Create a new location # features/manage_locations.feature:25
Given I am on the es site # features/step_definitions/location_steps.rb:17
And I am on new location page # features/step_definitions/location_steps.rb:22
And I fill in "Nombre" with "buena ubicación" # features/step_definitions/location_steps.rb:26
When I press "crear" # features/step_definitions/location_steps.rb:30
no button with value or id or text 'crear' found (Capybara::ElementNotFound)
(eval):2:in `click_button'
./features/step_definitions/location_steps.rb:31:in `/^I press "([^"]*)"$/'
features/manage_locations.feature:29:in `When I press "crear"'
Then I should see "buena ubicación" # features/step_definitions/location_steps.rb:9
Failing Scenarios:
cucumber -p wip features/manage_locations.feature:25 # Scenario: Create a new location
2 scenarios (1 failed, 1 passed)
9 steps (1 failed, 1 skipped, 7 passed)
0m0.648s
The --wip switch was used, so I didn't expect anything to pass. These scenarios passed:
(::) passed scenarios (::)
features/manage_locations.feature:19:in `Scenario: Create a new location'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment