sameeri / Code-CucumberJS

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

Add another scenario outline #4

Closed sameeri closed 10 years ago

sameeri commented 10 years ago

What happens if you have multiple scenario outlines. How does cucumber-js behave?

sameeri commented 10 years ago

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

Scenario Outline: Performing substractions in a Calculator Given a calculator And the calculator is clear When I subtract <input1> from <input2> Then the result should be <result> Examples: | input1 | input2 | result | | 2 | 2 | 0 | | 74 | 1 | 73 | | 207 | 205 | 2 |

sameeri commented 10 years ago

Implementation is in to develop. No issues found with multiple scenario outlines.