Files
weave-scope/vendor/github.com/lsegal/gucumber/internal/features/basic/scenario.feature
2016-03-23 15:41:37 +00:00

21 lines
499 B
Gherkin

@scenario @fast
Feature: Scenarios
This package should support the use of scenarios.
@basic
Scenario: Basic usage
Given I have an initial step
And I have a second step
When I run the "gucumber" command
Then this scenario should execute 1 time and pass
@outline
Scenario Outline: Scenario outline
Given I perform <val1> + <val2>
Then I should get <result>
Examples:
| val1 | val2 | result |
| 1 | 2 | 3 |
| 3 | 4 | 7 |