Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion features/factorial.feature
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,14 @@ Feature: Compute factorial
Scenario: Factorial of 2
Given I have the number 2
When I compute its factorial
Then I see the number 2
Then I see the number 2

Scenario: Factorial of 3
Given I have the number 3
When I compute its factorial
Then I see the number 6

Scenario: Factorial of 4
Given I have the number 4
When I compute its factorial
Then I see the number 24