X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fbehat%2Fgherkin%2Ftests%2FBehat%2FGherkin%2FFixtures%2Ffeatures%2Ffibonacci.feature;fp=vendor%2Fbehat%2Fgherkin%2Ftests%2FBehat%2FGherkin%2FFixtures%2Ffeatures%2Ffibonacci.feature;h=4a743ea72456ab4a485529785bf1f464aac27fc7;hp=0000000000000000000000000000000000000000;hb=1270d9129ce8f27c9b28b10518e32132c58e0aca;hpb=c27c0f0cdaa3f354b1fe54a56ae7e854be6e3f68 diff --git a/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/fibonacci.feature b/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/fibonacci.feature new file mode 100644 index 000000000..4a743ea72 --- /dev/null +++ b/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/fibonacci.feature @@ -0,0 +1,19 @@ +Feature: Fibonacci + In order to calculate super fast fibonacci series + As a pythonista + I want to use Python for that + + Scenario Outline: Series + When I ask python to calculate fibonacci up to + Then it should give me + + Examples: + | n | series | + | 1 | [] | + | 2 | [1, 1] | + | 3 | [1, 1, 2] | + | 4 | [1, 1, 2, 3] | + | 6 | [1, 1, 2, 3, 5] | + | 9 | [1, 1, 2, 3, 5, 8] | + | 100 | [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] | +