Sha256: 1061cc260a83a763501ec96d4f84c0394578c67b13752192a4f31d45f068f1b7

Contents?: true

Size: 1.02 KB

Versions: 10

Compression:

Stored size: 1.02 KB

Contents

Feature: Home Page 
  In order to simply view a project's complete story set
  As a stakeholder
  I want a home page that displays all features 

  
  Scenario: Links to features in alphabetical order
    Given a feature file named "kate_moss.feature" with the contents:
    """
    Feature: Kate Moss
    """
    Given a feature file named "katie_price.feature" with the contents:
    """
    Feature: Katie Price
    """
    Given a feature file named "jessica_jane_clement.feature" with the contents:
    """
    Feature: Jessica-Jane Clement
    """
    Given a feature file named "elle_macpherson.feature" with the contents:
    """
    Feature: Elle Macpherson
    """
    When I visit the home page
    Then I should see a link to my sample features
    And the features are ordered alphabetically

  Scenario: Display feature tags
    Given a feature file named "sample.feature" with the contents:
    """
    @sample_tag
    Feature: Sample Feature
     """
    When I visit the sample feature page
    Then I should see "sample_tag"



Version data entries

10 entries across 10 versions & 1 rubygems

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