Sha256: f4df4515a2407ba07c340e062f470a7c68382170b6efbb760ce94fb98f8ddfbd

Contents?: true

Size: 1.61 KB

Versions: 10

Compression:

Stored size: 1.61 KB

Contents

Feature: Feature Page
  In order to view a feature and its intent
  As a stakeholder
  I want a page that displays the feature's name,
       free-form narrative and scenario titles

  Scenario: Feature Content
    Given a feature file named "sample.feature" with the contents:
    """
    Feature: Sample Feature
      In order to get some value
      As a person
      I want to create value
     """
    When I visit the sample feature page
    Then I should see the feature free-form narrative

 Scenario: View Scenario Links
    Given a feature file named "sample.feature" with the contents:
    """
    Feature: Sample Feature
      In order to get some value
      As a person
      I want to create value

    Scenario: Sample Aidy
      Given my name is "Aidy"
      When I drink alcohol
      Then I go nuts

    Scenario: Sample Andrew
      Given my name is 'Andrew'
      When I drink alcohol
      Then I go happy
     """
    When I visit the sample feature page
    Then I should see Scenario headers as links
    
  Scenario: Sort Scenario Links in Alphabetical Order
    Given a feature file named "sample.feature" with the contents:
    """
    Feature: Sample Feature
      Scenario: V
      Scenario: C
      Scenario: I
      Scenario: N
     """
    When I visit the sample feature page
   Then the scenario links are sorted

  Scenario: View Scenario Tags - Feature Page
    Given a feature file named "sample.feature" with the contents:
    """
    Feature: Sample Feature

    @tag1 @tag2
    Scenario: Sample Aidy
     """
    When I visit the sample feature page
    Then I should see "tag1"
    And I should see "tag2"

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
wally-0.0.33 features/feature_page.feature
wally-0.0.32 features/feature_page.feature
wally-0.0.31 features/feature_page.feature
wally-0.0.30 features/feature_page.feature
wally-0.0.29 features/feature_page.feature
wally-0.0.28 features/feature_page.feature
wally-0.0.27 features/feature_page.feature
wally-0.0.26 features/feature_page.feature
wally-0.0.25 features/feature_page.feature
wally-0.0.24 features/feature_page.feature