Sha256: 6a431003af639f42fcd0680bf257eedd19c4639ccec1691f65cdbe930e6713fc

Contents?: true

Size: 1.21 KB

Versions: 7

Compression:

Stored size: 1.21 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: 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: 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: Tags
    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

7 entries across 7 versions & 1 rubygems

Version Path
wally-0.0.40 features/scenario_page.feature
wally-0.0.39 features/scenario_page.feature
wally-0.0.38 features/scenario_page.feature
wally-0.0.37 features/scenario_page.feature
wally-0.0.36 features/scenario_page.feature
wally-0.0.35 features/scenario_page.feature
wally-0.0.34 features/scenario_page.feature