2
In order to calculate super fast fibonacci series
4
I want to use Javascript for that
6
Scenario Outline: Series
7
When I ask Javascript to calculate fibonacci up to <n>
8
Then it should give me <series>
16
| 6 | [1, 1, 2, 3, 5] |
17
| 9 | [1, 1, 2, 3, 5, 8] |
18
| 100 | [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] |
20
Scenario: Single series tested via a DocString
21
When I ask Javascript to calculate fibonacci up to 2 with formatting
22
Then it should give me:
29
Scenario: Single series tested via a Step Table
30
When I ask Javascript to calculate fibonacci up to 2
31
Then it should contain:
35
@do-fibonnacci-in-before-hook @reviewed
36
Scenario: Single series with Before hook with a tag label
37
Then it should give me [1, 1, 2]
39
Scenario: Single series by calling a step from within a step
40
Then it should give me [1, 1] via calling another step definition
42
Scenario: Single series by calling multiple steps from within a step
43
Then it should calculate fibonacci up to 2 giving me [1, 1]
b'\\ No newline at end of file'