Sha256: c20251e3388038bc547befcd209f8f720fac57da0857360dc64e3ec4bc77327f

Contents?: true

Size: 772 Bytes

Versions: 4

Compression:

Stored size: 772 Bytes

Contents

Feature: transform
  In order to maintain modularity within step definitions
  As a step definition editor
  I want to register a regex to capture and tranform step definition arguments.

  Scenario: run a specific scenario with a registered transform
    When I run cucumber -q features/transform_sample.feature --require features
    Then it should pass with
    """
    Feature: Step argument transformations
    
      Scenario: transform with matches
        Then I should transform '10' to an Integer

      Scenario: transform with matches that capture
        Then I should transform 'abc' to a Symbol

      Scenario: transform without matches
        Then I should not transform '10' to an Integer

    3 scenarios (3 passed)
    3 steps (3 passed)
    
    """

Version data entries

4 entries across 4 versions & 4 rubygems

Version Path
aslakhellesoy-cucumber-0.3.101 features/transform.feature
dwaite-cucumber-0.3.101 features/transform.feature
engineyard-cucumber-0.3.101 features/transform.feature
cucumber-0.3.101 features/transform.feature