1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Feature: Multiple Scenarios
As a developer using Test::BDD::Cucumber,
I want to ensure that I can use multiple Scenarios in a Feature.
Scenario: First test
Given a Digest MD5 object
When I add "foo" to the object
And I add "bar" to the object
Then the results look like
| method | output |
| hexdigest | 3858f62230ac3c915f300c664312c63f |
| b64digest | 1B2M2Y8AsgTpgAmY7PhCfg |
Scenario: Same test all over again
Given a Digest MD5 object
When I add "foo" to the object
And I add "bar" to the object
Then the results look like
| method | output |
| hexdigest | 3858f62230ac3c915f300c664312c63f |
| b64digest | 1B2M2Y8AsgTpgAmY7PhCfg |
|