sameeri / Code-CucumberJS

Experimenting the JS port of cucumber.
0 stars 0 forks source link

Are scenario outlines easy to work with? #3

Closed sameeri closed 10 years ago

sameeri commented 10 years ago

Are scenario outlines easy to work with?

sameeri commented 10 years ago

Experiment with the following Scenario outline to verify cucumber-js supports Scenario outlines.

Scenario Outline: Performing additions in a Calculator Given a calculator And the calculator is clear When I add <input1> and <input2> Then the result should be <result> Examples: | input1 | input2 | result | | 2 | 2 | 4 | | 98 | 1 | 99 | | 207 | 341 | 648 |

sameeri commented 10 years ago

This is implemented and merged into develop. No issues found while experimenting with a scenario outline.