summaryrefslogtreecommitdiff
path: root/3bg/features/addition.feature
blob: 9d5e0993bf7cc36912e1df5728e72c9d27de3e7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Feature: Add Numbers
	As a user of the calculator
	I want to add 2 numbers

	Background:
		Given the start value is 5

	Scenario: Add numbers
		When I add 6
		Then the result should be 11

	Scenario: Add numbers
		When I add 25
		Then the result should be 30