File: test.feature

package info (click to toggle)
libtest-bdd-cucumber-perl 0.26-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 528 kB
  • sloc: perl: 3,436; makefile: 8
file content (21 lines) | stat: -rw-r--r-- 895 bytes parent folder | download | duplicates (4)
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           |