Sha256: 2dfe80d641d9a6c1930db4bcbc09beb429e4ae6fc37442812f7c3fc8d47a4cd6

Contents?: true

Size: 1.07 KB

Versions: 6

Compression:

Stored size: 1.07 KB

Contents

Feature: --formatter steps option - Steps Formatter
  In order to easily see which steps are already defined,
  specially when using 3rd party steps libraries,
  Cucumber should show the available steps in a user-friendly format

  Background:
    Given I am in steps_library

  Scenario: Printing steps
    When I run cucumber -f steps features
    Then STDERR should be empty
    And it should pass with
    """
    features/step_definitions/steps_lib1.rb
      /^I defined a first step$/           # features/step_definitions/steps_lib1.rb:1
      /^I define a second step$/           # features/step_definitions/steps_lib1.rb:4
      /^I should also have a third step$/  # features/step_definitions/steps_lib1.rb:7
    
    features/step_definitions/steps_lib2.rb
      /^I defined a step 4$/                # features/step_definitions/steps_lib2.rb:1
      /^I create a step 5$/                 # features/step_definitions/steps_lib2.rb:4
      /^I should be too tired for step 6$/  # features/step_definitions/steps_lib2.rb:7
    
    6 step definition(s) in 2 source file(s).

    """

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
aslakhellesoy-cucumber-0.3.102.1 features/steps_formatter.feature
aslakhellesoy-cucumber-0.3.102.2 features/steps_formatter.feature
aslakhellesoy-cucumber-0.3.103 features/steps_formatter.feature
kosmas58-cucumber-0.3.102 features/steps_formatter.feature
kosmas58-cucumber-0.3.103 features/steps_formatter.feature
cucumber-0.3.103 features/steps_formatter.feature