Sha256: 41fc02d77f134e3de85f0f0a3a3204fdc29a7886fcf3a210131899c767dc6197

Contents?: true

Size: 528 Bytes

Versions: 2

Compression:

Stored size: 528 Bytes

Contents

Feature: History

  In order to check if and how a Test Double has been called
  As a BDD-guy
  I want to have all calls to Test Doubles logged into a History

  Scenario: Check history
    Given I double `foo --bar baz`
    Then the double `foo --bar baz` should not have been run
    When I run `foo --bar baz`
    Then the double `foo --bar baz` should have been run
    But the double `foo` should not have been run

  Scenario: Clean history after each scenario
    Then the double `foo --bar baz` should not have been run

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
aruba-doubles-1.2.1 features/history.feature
aruba-doubles-1.2.0 features/history.feature