Sha256: 2230c64d5967e90060a262dd0ee648fc2ede7b26768a575c58fcd82e790bd01d

Contents?: true

Size: 1.25 KB

Versions: 8

Compression:

Stored size: 1.25 KB

Contents

@scenarios
Feature: Scenario
  As a reader of the documentation I expect that scenario are documented correctly

  Background:
    Given this background step

  @first
  Scenario: No Step Scenario

  @second
  Scenario: Scenario With Steps
    Given this first step
	When this second step
	Then this third step
	
  @third @optional_parameters
  Scenario: Optional Parameter Step Definition
    # This step definition has some optional parameters
    Given a project
    And an inactive project
    And a project with the name 'optional', start date 10/26/2010, nicknamed 'norman'

  @fourth @highlight
  Scenario: Matched Term Highlighting
    Given a duck that has a bill
    Then I expect the duck to quack

  @fifth @table
  Scenario: Scenario With Table
    Given the following table:
      | column 1 | column 2 | column 3 |
      | value 1  | value 2  | value 3  |

  @sixth @text
  Scenario: Scenario With Text
    Given the following text:
    """
      Oh what a bother!
    """

  @seventh @comments
  Scenario: Scenario with comments and 
    with multiple lines for the name
    # First Comment
    Given this first step
    # Second Comment
    And this second step
    # Third Comment
    And this third step
    # Comments after the last step, where do they go?

Version data entries

8 entries across 5 versions & 1 rubygems

Version Path
cucumber-in-the-yard-1.7.2 example/child_feature/grandchild_feature/scenario.feature
cucumber-in-the-yard-1.7.1 example/child_feature/grandchild_feature/scenario.feature
cucumber-in-the-yard-1.7.0 example/child_feature/grandchild_feature/scenario.feature
cucumber-in-the-yard-1.7.0 example/child_feature/scenario.feature
cucumber-in-the-yard-1.6.4 example/child_feature/grandchild_feature/scenario.feature
cucumber-in-the-yard-1.6.4 example/child_feature/scenario.feature
cucumber-in-the-yard-1.6.3 example/child_feature/grandchild_feature/scenario.feature
cucumber-in-the-yard-1.6.3 example/child_feature/scenario.feature