Sha256: 2ec3f6ccf0bb49c6a0073f789575192c09f1c830683ae8c229c3f05f0318aab1

Contents?: true

Size: 478 Bytes

Versions: 4

Compression:

Stored size: 478 Bytes

Contents

Feature: Object#taputs
  Scenario: Call taputs within methods chain
    Given I have the following code:
    """
    (1..5).taputs.select(&:odd?).taputs.inject(&:+)
    """

    When Ruby it

    Then I should see:
    """
    1..5
    1
    3
    5
    """

  Scenario: Call taputs with block
    Given I have the following code:
    """
    (1..5).taputs(&:count).select(&:odd?).taputs
    """

    When Ruby it

    Then I should see:
    """
    5
    1
    3
    5
    """

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
tapp-1.5.1 spec/acceptance/taputs.feature
tapp-1.5.0 spec/acceptance/taputs.feature
qtapp-1.4.1 spec/acceptance/qtaputs.feature
tapp-1.4.1 spec/acceptance/taputs.feature