Security update for permissions_by_term
[yaffs-website] / vendor / behat / gherkin / tests / Behat / Gherkin / Fixtures / features / addition.feature
1 # language: en
2 Feature: Addition
3   In order to avoid silly mistakes
4   As a math idiot 
5   I want to be told the sum of two numbers
6
7   Scenario: Add two numbers
8     Given I have entered 11 into the calculator
9     And I have entered 12 into the calculator
10     When I press add
11     Then the result should be 23 on the screen
12
13   Scenario: Div two numbers
14     Given I have entered 10 into the calculator
15     And I have entered 2 into the calculator
16     When I press div
17     Then the result should be 5 on the screen