X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fbehat%2Fgherkin%2Ftests%2FBehat%2FGherkin%2FFixtures%2Ffeatures%2Fcommented_out.feature;fp=vendor%2Fbehat%2Fgherkin%2Ftests%2FBehat%2FGherkin%2FFixtures%2Ffeatures%2Fcommented_out.feature;h=61d7bef5904176aea7b9b6f19b9c9ef4333a433a;hb=1270d9129ce8f27c9b28b10518e32132c58e0aca;hp=0000000000000000000000000000000000000000;hpb=c27c0f0cdaa3f354b1fe54a56ae7e854be6e3f68;p=yaffs-website diff --git a/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/commented_out.feature b/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/commented_out.feature new file mode 100644 index 000000000..61d7bef59 --- /dev/null +++ b/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/commented_out.feature @@ -0,0 +1,34 @@ +Feature: Fibonacci + In order to calculate super fast fibonacci series + As a pythonista + I want to use Python for that + +# +# Background: +# Given passing without a table +# +# Scenario: I'm a multiline name +# which goes on and on and on for three lines +# yawn +# Given passing without a table +# +# Scenario: +# Then I should see +# """ +# a string with #something +# """ +# +# 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] | +#