Sha256: c13eb252723d664ab2b4d87c29fa000177da3a13c487e881960e2609bd04b7ad

Contents?: true

Size: 864 Bytes

Versions: 4

Compression:

Stored size: 864 Bytes

Contents

Feature: This is a job that demonstrates how to use Remi sub transforms

  Background:
    Given the job is 'Sub Transform Example'
    And the job source 'My Source'
    And the job target 'My Target'

  Scenario: It uses the subtransform to prefix a field with the default value

    Given the source 'My Source'
    And the target 'My Target'

    And the following example for 'My Source':
      | id |
      | 1  |

    Then the target should match the example:
      | id | default_id |
      | 1  | DEFAULT1   |


  Scenario: It uses parameters to customize subtansforms

    Given the source 'My Source'
    And the target 'My Target'

    And the job parameter 'job_prefix' is "UC"

    And the following example for 'My Source':
      | id |
      | 1  |

    Then the target should match the example:
      | id | default_id |
      | 1  | UC1        |

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
remi-0.3.3 features/sub_transform_example.feature
remi-0.3.2 features/sub_transform_example.feature
remi-0.3.1 features/sub_transform_example.feature
remi-0.3.0 features/sub_transform_example.feature