mojotech / pioneer

Integration Testing
MIT License
527 stars 35 forks source link

Scenario Outline now supported in cucumberjs #340

Open Danieler opened 9 years ago

Danieler commented 9 years ago

Scenario Outline its now supported in the cucumberjs

         Scenario Outline: eating
           Given there are <start> cucumbers
           When I eat <eat> cucumbers
           Then I should have <left> cucumbers

Examples:
  | start | eat | left |
  |  12   |  5  |  7   |
  |  20   |  5  |  15  |

would be nice to update it in pioneer for have support too ... ;)