From 3efa629b50abb286b280a90e799e5e4de6b727c9 Mon Sep 17 00:00:00 2001 From: proanja Date: Thu, 22 Jan 2015 11:01:00 +0100 Subject: [PATCH] Update factorial.feature --- features/factorial.feature | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/features/factorial.feature b/features/factorial.feature index 976ce8a..1f41412 100644 --- a/features/factorial.feature +++ b/features/factorial.feature @@ -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 \ No newline at end of file + 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