Sha256: b91e36b16923197d7ea3441ac7b3d234f9f13cd1d4b48eccf4cfe48cba8a0495

Contents?: true

Size: 1.42 KB

Versions: 12

Compression:

Stored size: 1.42 KB

Contents

Feature: Cucumber command line
  In order to find out what step definitions need to be implemented
  Developers should always see what step definition is missing

  Scenario: Get info at arbitrary levels of nesting
    When I run cucumber features/call_undefined_step_from_step_def.feature
    Then it should pass with
      """
      Feature: Calling undefined step

        Scenario: Call directly                                # features/call_undefined_step_from_step_def.feature:3
          Given a step definition that calls an undefined step # features/step_definitions/sample_steps.rb:19
            Undefined step: "this does not exist" (Cucumber::StepMother::Undefined)
            ./features/step_definitions/sample_steps.rb:20:in `/^a step definition that calls an undefined step$/'

        Scenario: Call via another                                         # features/call_undefined_step_from_step_def.feature:6
          Given call step "a step definition that calls an undefined step" # features/step_definitions/sample_steps.rb:23
            Undefined step: "this does not exist" (Cucumber::StepMother::Undefined)
            ./features/step_definitions/sample_steps.rb:20:in `/^a step definition that calls an undefined step$/'

      2 scenarios
      2 undefined steps

      You can implement step definitions for missing steps with these snippets:

      Given /^this does not exist$/ do
        pending
      end


      """

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
aslakhellesoy-cucumber-0.1.99.10 features/report_called_undefined_steps.feature
aslakhellesoy-cucumber-0.1.99.11 features/report_called_undefined_steps.feature
aslakhellesoy-cucumber-0.1.99.12 features/report_called_undefined_steps.feature
aslakhellesoy-cucumber-0.1.99.13 features/report_called_undefined_steps.feature
aslakhellesoy-cucumber-0.1.99.14 features/report_called_undefined_steps.feature
aslakhellesoy-cucumber-0.1.99.15 features/report_called_undefined_steps.feature
aslakhellesoy-cucumber-0.1.99.3 features/report_called_undefined_steps.feature
aslakhellesoy-cucumber-0.1.99.5 features/report_called_undefined_steps.feature
aslakhellesoy-cucumber-0.1.99.6 features/report_called_undefined_steps.feature
aslakhellesoy-cucumber-0.1.99.7 features/report_called_undefined_steps.feature
aslakhellesoy-cucumber-0.1.99.8 features/report_called_undefined_steps.feature
aslakhellesoy-cucumber-0.1.99.9 features/report_called_undefined_steps.feature