Sha256: 02cae9c68f422f3e204df1475242a6ba6964e7f361cb427f123d05268e7d1d2a

Contents?: true

Size: 869 Bytes

Versions: 3

Compression:

Stored size: 869 Bytes

Contents

Feature: Show Recordings
  In order to see what's going on inside Cucover
  As a developer of Cucover
  I want to be able to see a human-readable summary of the recordings

  Background:
    Given I am using the simple example app

  Scenario: Run a couple of features, see the recordings
    Given I have run cucover -- features/call_foo.feature
    And I have run cucover -- features/call_foo_and_bar_together.feature
    When I run cucover --show-recordings
    Then it should pass with:
    """

    features/call_foo.feature:3
      features/step_definitions/main_steps.rb:6:10
      lib/foo.rb:2:3
      features/call_foo.feature:<unknown lines>

    features/call_foo_and_bar_together.feature:3
      features/step_definitions/main_steps.rb:6:10
      lib/bar.rb:2:3
      lib/foo.rb:2:3
      features/call_foo_and_bar_together.feature:<unknown lines>


    """

Version data entries

3 entries across 3 versions & 1 rubygems

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