Security update for permissions_by_term
[yaffs-website] / vendor / behat / gherkin / tests / Behat / Gherkin / Fixtures / features / commented_out.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 #
7 #  Background:
8 #    Given passing without a table
9 #
10 #  Scenario: I'm a multiline name
11 #            which goes on and on and on for three lines
12 #            yawn
13 #    Given passing without a table
14 #
15 #  Scenario:
16 #    Then I should see
17 #      """
18 #      a string with #something
19 #      """
20 #
21 #  Scenario Outline: Series
22 #    When I ask python to calculate fibonacci up to <n>
23 #    Then it should give me <series>
24 #
25 #    Examples:
26 #      | n   | series                                 |
27 #      | 1   | []                                     |
28 #      | 2   | [1, 1]                                 |
29 #      | 3   | [1, 1, 2]                              |
30 #      | 4   | [1, 1, 2, 3]                           |
31 #      | 6   | [1, 1, 2, 3, 5]                        |
32 #      | 9   | [1, 1, 2, 3, 5, 8]                     |
33 #      | 100 | [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] |
34 #