1
Feature: Cucumber command line
2
In order to write better software
3
Developers should be able to execute requirements as tests
6
Scenario: Run single failing scenario with default diff enabled
7
When I run cucumber -q features/failing_expectation.feature
8
Then it should fail with
10
Feature: Failing expectation
12
Scenario: Failing expectation
13
Given failing expectation
15
got: "this" (using ==) (RSpec::Expectations::ExpectationNotMetError)
16
./features/step_definitions/sample_steps.rb:63:in `/^failing expectation$/'
17
features/failing_expectation.feature:4:in `Given failing expectation'
20
cucumber features/failing_expectation.feature:3