%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/egp/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/etalons/ |
Upload File : |
feature: title: Fibonacci language: en line: 1 description: |- In order to calculate super fast fibonacci series As a pythonista I want to use Python for that scenarios: - type: outline title: Series line: 6 steps: - { keyword_type: 'When', type: 'When', text: 'I ask python to calculate fibonacci up to <n>', line: 7 } - { keyword_type: 'Then', type: 'Then', text: 'it should give me <series>', line: 8 } 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]' ]