# language: en Feature: Gherkin example feature In this feature we have some examples of how a feature should look like Background: Given there is a background step Scenario: Scenario with different keywords Given there is a requirement When the user does something And the user does something else But the user does not do this Then the user should see a confirmation Scenario Outline: Scenario with an outline Given the program has and When the program adds them together Then the program should see Examples: scenario outline | number1 | number2 | sum | | 1 | 1 | 2 | | 4 | 5 | 9 | | 345 | 678 | 923 | Scenario: Scenario with an Datatable Given the user has a Datatable with numbers | 1 | 1 | 2 | | 4 | 5 | 9 | | 345 | 678 | 923 | When the user looks in the result of the first step Then the user should see the Datatable Rule: There is a rule in play Scenario: Scenario with a rule Given there is a rule When the user creates a scenario Then the user should see the scenario in the rule