Sha256: f81df80cbcc8657f8d45fa20845d757a4f4e901d957991c6354f6652671d4df9

Contents?: true

Size: 877 Bytes

Versions: 25

Compression:

Stored size: 877 Bytes

Contents

Feature: Test the truncate transformer.

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

  Scenario: Truncating a field.
    Given the source 'Source Data'
    And the target 'Target Data'
    And the job parameter 'truncate_len' is "5"

    And the source field 'My Field' is set to the value "something"
    Then the target field 'Truncated Field' is set to the value "somet"
    Then the source field 'My Field' is truncated to 5 characters and loaded into the target field 'Truncated Field'

    And the job parameter 'truncate_len' is "7"

    And the source field 'My Field' is set to the value "something"
    Then the target field 'Truncated Field' is set to the value "somethi"
    Then the source field 'My Field' is truncated to 7 characters and loaded into the target field 'Truncated Field'

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
remi-0.3.3 features/transforms/truncate.feature
remi-0.3.2 features/transforms/truncate.feature
remi-0.3.1 features/transforms/truncate.feature
remi-0.3.0 features/transforms/truncate.feature
remi-0.2.42 features/transforms/truncate.feature
remi-0.2.41 features/transforms/truncate.feature
remi-0.2.40 features/transforms/truncate.feature
remi-0.2.39 features/transforms/truncate.feature
remi-0.2.38 features/transforms/truncate.feature
remi-0.2.37 features/transforms/truncate.feature
remi-0.2.36 features/transforms/truncate.feature
remi-0.2.35 features/transforms/truncate.feature
remi-0.2.34 features/transforms/truncate.feature
remi-0.2.33 features/transforms/truncate.feature
remi-0.2.32 features/transforms/truncate.feature
remi-0.2.31 features/transforms/truncate.feature
remi-0.2.30 features/transforms/truncate.feature
remi-0.2.29 features/transforms/truncate.feature
remi-0.2.28 features/transforms/truncate.feature
remi-0.2.27 features/transforms/truncate.feature