1
Feature: Run specific scenarios
3
You can choose to run a specific scenario using the file:line format
6
Given a file named "features/step_definitions/steps.rb" with:
9
Given(/fail/) { raise "Failed" }
12
Scenario: Two scenarios, run just one of them
13
Given a file named "features/test.feature" with:
17
Given this is undefined
22
When I run `cucumber features/test.feature:5 -f progress`
23
Then it should pass with:
28
Scenario: Single example from a scenario outline
29
Given a file named "features/test.feature" with:
33
Given this <something>
43
When I run `cucumber features/test.feature:8 -f progress`
44
Then it should fail with: