Security update for permissions_by_term
[yaffs-website] / vendor / behat / gherkin / tests / Behat / Gherkin / Fixtures / etalons / fibonacci.yml
1 feature:
2   title:        Fibonacci
3   language:     en
4   line:         1
5   description:  |-
6     In order to calculate super fast fibonacci series
7     As a pythonista
8     I want to use Python for that
9
10   scenarios:
11     -
12       type:     outline
13       title:    Series
14       line:     6
15       steps:
16         - { keyword_type: 'When', type: 'When',  text: 'I ask python to calculate fibonacci up to <n>', line: 7 }
17         - { keyword_type: 'Then', type: 'Then',  text: 'it should give me <series>',                    line: 8 }
18
19       examples:
20         11: [ n   , series                                   ]
21         12: [ 1   , '[]'                                     ]
22         13: [ 2   , '[1, 1]'                                 ]
23         14: [ 3   , '[1, 1, 2]'                              ]
24         15: [ 4   , '[1, 1, 2, 3]'                           ]
25         16: [ 6   , '[1, 1, 2, 3, 5]'                        ]
26         17: [ 9   , '[1, 1, 2, 3, 5, 8]'                     ]
27         18: [ 100 , '[1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]' ]