Sha256: 64fe931963ebb2448918cc533bf5b07b71ca05536fef4c82df15f8af7ae86504

Contents?: true

Size: 746 Bytes

Versions: 2

Compression:

Stored size: 746 Bytes

Contents

Feature: Tests the aggregate refinement to the Daru library

  Background:
    Given the job is 'Aggregate'
    And the job source 'Source Data'
    And the job target 'Target Data'

    And the source 'Source Data'
    And the target 'Target Data'

  Scenario: The aggregator should find the minimum year for each 'Alpha'
    Given the following example record for 'Source Data':
      | Alpha | Year | something |
      | a     | 2016 | 1 |
      | a     | 2018 | 1 |
      | b     | 2016 | 2 |
      | b     | 2010 | 3 |
      | a     | 2017 | 4 |
    And the following example record called 'expected result':
      | Alpha | Year |
      | a     | 2016 |
      | b     | 2010 |
    Then the target should match the example 'expected result'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
remi-0.2.4 lib/remi/project/features/aggregate.feature
remi-0.2.3 lib/remi/project/features/aggregate.feature