Sha256: 27ec2d20b3f656efa8dd22c3c3b919dc181f9fc63a1c44f3e71391df8b353197

Contents?: true

Size: 1.33 KB

Versions: 11

Compression:

Stored size: 1.33 KB

Contents

Feature: Scenario Page
  In order to view a scenario's intent
  As a stakeholder  
  I want a page that displays each scenario and its steps

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

    @tag1 @tag2
    Scenario: Sample Aidy
      Given my name is "Aidy"
      When I drink alcohol
      Then I go nuts
     """
    When I visit the sample feature page
    And click on a scenario header link
    Then a page appears with the scenario content
    And I should see "tag1"
    And I should see "tag2"


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

    Background:
      Given some things

    Scenario: Sample Aidy
     """
    When I visit the sample feature page
    And click on a scenario header link
    Then the background is visible

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

    Background:
      Given some things

    @work_in_progress
    Scenario: Sample Aidy
     """
    When I visit the sample feature page
    And click on a scenario header link
    Then I should see "work_in_progress"



  
  
  
  
  

  
  
  
  

  
  
  
  
  
  
  

Version data entries

11 entries across 11 versions & 1 rubygems

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