Sha256: 66a8a8bb3ba26de8413b2a8e03f9266404ff2ffd98ed0519fae1065bdc6fa44b

Contents?: true

Size: 889 Bytes

Versions: 2

Compression:

Stored size: 889 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:4
      features/call_foo.feature:<unknown lines>
    
    features/call_foo_and_bar_together.feature:3
      lib/foo.rb:2:3:4
      features/step_definitions/main_steps.rb:6:10
      lib/bar.rb:2:3:4
      features/call_foo_and_bar_together.feature:<unknown lines>
    
    
    """

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mattwynne-cucover-0.1.0 features/show_recordings.feature
mattwynne-cucover-0.1.1 features/show_recordings.feature