Sha256: b52bb32c2e03d15fbff3a4b4d25487eac2870cad172283bbe3b1e518e152e776

Contents?: true

Size: 609 Bytes

Versions: 13

Compression:

Stored size: 609 Bytes

Contents

Feature: Search
  In order to learn cucumber
  As an engineer
  I want to run some simple tests

  Scenario: 1) Reverse a String
    Given a string "abc"
    When the string is reversed
    Then the string should be "cba"
    
  Examples:
    |input |output|
    |a     |a     |
    |ab    |ba    |    

  Scenario: 2) Upcase a String
    Given a string "abc"
    When the string is upcased
    Then the string should be "ABC"

  Scenario: 3) Combining 2 Methods
    Given a string "abc"
    When the string is upcased
    And the string is reversed
    Then the string should be "CBA"

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
cucumber-0.6.4 spec/cucumber/treetop_parser/test_dos.feature
cucumber-0.6.3 spec/cucumber/treetop_parser/test_dos.feature
davidtrogers-cucumber-0.6.2 spec/cucumber/treetop_parser/test_dos.feature
cucumber-0.6.2 spec/cucumber/treetop_parser/test_dos.feature
cucumber-0.6.1 spec/cucumber/treetop_parser/test_dos.feature
cucumber-0.6.0 spec/cucumber/treetop_parser/test_dos.feature
cucumber-0.5.3 spec/cucumber/treetop_parser/test_dos.feature
cucumber-0.5.2 spec/cucumber/treetop_parser/test_dos.feature
cucumber-0.5.1 spec/cucumber/treetop_parser/test_dos.feature
cucumber-0.5.0 spec/cucumber/treetop_parser/test_dos.feature
cucumber-0.4.5.rc2 spec/cucumber/treetop_parser/test_dos.feature
kbaum-cucumber-0.4.5.pre spec/cucumber/treetop_parser/test_dos.feature
cucumber-0.4.5.rc1 spec/cucumber/treetop_parser/test_dos.feature