Security update for permissions_by_term
[yaffs-website] / vendor / behat / gherkin / tests / Behat / Gherkin / Fixtures / features / fibonacci.feature
1 Feature: Fibonacci
2   In order to calculate super fast fibonacci series
3   As a pythonista
4   I want to use Python for that
5   
6   Scenario Outline: Series
7     When I ask python to calculate fibonacci up to <n>
8     Then it should give me <series>
9
10     Examples:
11       | n   | series                                 |
12       | 1   | []                                     |
13       | 2   | [1, 1]                                 |
14       | 3   | [1, 1, 2]                              |
15       | 4   | [1, 1, 2, 3]                           |
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] |
19