Sha256: 5dba334ebb092c76a866730fbb8497fde9bdcdbcc4d438b4cc1521905b794b2f

Contents?: true

Size: 891 Bytes

Versions: 8

Compression:

Stored size: 891 Bytes

Contents

Feature: Cucumber command line
  In order to write better software
  Developers should be able to execute requirements as tests

  @rspec2
  Scenario: Run single failing scenario with default diff enabled
    When I run cucumber -q features/failing_expectation.feature
    Then it should fail with
      """
      Feature: Failing expectation

        Scenario: Failing expectation
          Given failing expectation
            expected: "that"
                 got: "this" (using ==) (RSpec::Expectations::ExpectationNotMetError)
            ./features/step_definitions/sample_steps.rb:63:in `/^failing expectation$/'
            features/failing_expectation.feature:4:in `Given failing expectation'
      
      Failing Scenarios:
      cucumber features/failing_expectation.feature:3 # Scenario: Failing expectation
      
      1 scenario (1 failed)
      1 step (1 failed)

      """

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
cucumber-1.0.1 legacy_features/diffing.feature
cucumber-1.0.0 legacy_features/diffing.feature
cucumber-0.10.7 legacy_features/diffing.feature
cucumber-0.10.6 legacy_features/diffing.feature
cucumber-0.10.5 legacy_features/diffing.feature
cucumber-0.10.3 legacy_features/diffing.feature
cucumber-0.10.2 legacy_features/diffing.feature
cucumber-0.10.1 legacy_features/diffing.feature