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