mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-05 03:01:11 +00:00
21 lines
499 B
Gherkin
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 |
|