Sha256: d2b5d84ec0f7a96caa16a0c9eb42b2cd333be5d127604cd43456e8c3f5fcb4a9

Contents?: true

Size: 945 Bytes

Versions: 3

Compression:

Stored size: 945 Bytes

Contents

Feature: Lazy Run per Scenario Outline Example
  In order save time
  As a developer working on a feature with Scenario Outlines
  I want to run only the examples that could fail

  Background:
    Given I am using the simple example app
    And I have run cucover -- features/call_foo_then_bar_from_scenario_outline_examples.feature

  Scenario: Edit a source file that should trigger just one of the examples to be run
    When I edit the source file lib/bar.rb
    And I run cucover -- -q features/call_foo_then_bar_from_scenario_outline_examples.feature
    Then it should pass with:
      """
      Feature: Call Foo then Bar from Scenario Outline Examples

        Scenario Outline: Call Something
          When I call <Code>

          Examples:
            | Code |
            | Foo  |  [ Cucover - Skipping clean scenario ]
            | Bar  |

      2 scenarios (1 skipped, 1 passed)
      2 steps (1 skipped, 1 passed)

      """

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cucover-0.1.4 features/lazy_run_per_scenario_outline_example.feature
cucover-0.1.3 features/lazy_run_per_scenario_outline_example.feature
cucover-0.1.2 features/lazy_run_per_scenario_outline_example.feature