features/expectations/implicit_docstrings.feature in rspec-expectations-2.0.0.beta.22 vs features/expectations/implicit_docstrings.feature in rspec-expectations-2.0.0.rc

- old
+ new

@@ -22,11 +22,11 @@ Then the output should contain "should be < 5" And the output should contain "should include 2" And the output should contain "should respond to #size" - Scenario Outline: run failing examples + Scenario: run failing examples Given a file named "failing_implicit_docstrings_spec.rb" with: """ describe "Failing examples with no descriptions" do # description is auto-generated as "should equal(5)" based on the last #should @@ -46,7 +46,7 @@ When I run "rspec ./failing_implicit_docstrings_spec.rb -fdoc" Then the output should contain "should equal 2" And the output should contain "should be > 5" - And the output should contain "should include "b"" + And the output should contain "should include 4" And the output should contain "should not respond to #size"