Sha256: 153ce4de8e5215ee46f25390db572804aba7d39769e9174453a11390bc9d9a4c

Contents?: true

Size: 857 Bytes

Versions: 15

Compression:

Stored size: 857 Bytes

Contents

Feature: Rerun formatter: Test for Issue #57
  details see https://github.com/cucumber/cucumber/issues/57

  Background:
    Given a file named "features/one_passing_one_failing.feature" with:
      """
      Feature: One passing example, one failing example

        Scenario Outline:
          Given a <certain> step
        
        Examples:
          |certain|
          |passing|
          |failing|

      """
    And a file named "features/step_definitions/steps.rb" with:
      """
      Given /a passing step/ do
        #does nothing
      end

      Given /a failing step/ do
        fail
      end
      """

  Scenario: Handle examples with the rerun formatter
    When I run cucumber "features/one_passing_one_failing.feature -r features -f rerun"
    Then it should fail with:
    """
    features/one_passing_one_failing.feature:9
    """

Version data entries

15 entries across 15 versions & 4 rubygems

Version Path
resque-pool-0.3.0 vendor/bundle/ruby/1.8/gems/cucumber-1.1.9/features/issue_57.feature
frameworks-capybara-0.2.0.rc6 vendor/bundle/ruby/1.8/gems/cucumber-1.1.9/features/issue_57.feature
frameworks-capybara-0.2.0.rc5 vendor/bundle/ruby/1.8/gems/cucumber-1.1.9/features/issue_57.feature
frameworks-capybara-0.2.0.rc4 vendor/bundle/ruby/1.8/gems/cucumber-1.1.9/features/issue_57.feature
frameworks-capybara-0.2.0.rc3 vendor/bundle/ruby/1.8/gems/cucumber-1.1.9/features/issue_57.feature
frameworks-capybara-0.2.0.rc2 vendor/bundle/ruby/1.8/gems/cucumber-1.1.9/features/issue_57.feature
resque-pool-0.3.0.beta.2 vendor/bundle/ruby/1.8/gems/cucumber-1.1.9/features/issue_57.feature
radiant-1.0.0 ruby-debug/ruby/1.8/gems/cucumber-1.1.9/features/issue_57.feature
cucumber-1.1.9 features/issue_57.feature
cucumber-1.1.8 features/issue_57.feature
cucumber-1.1.7 features/issue_57.feature
cucumber-1.1.6 features/issue_57.feature
cucumber-1.1.5 features/issue_57.feature
cucumber-1.1.4 features/issue_57.feature
cucumber-1.1.3 features/issue_57.feature