Flowdock
method

failure_message_for_should

Importance_0
failure_message_for_should() public

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# File lib/spec/matchers/be.rb, line 32
      def failure_message_for_should
        if handling_predicate?
          if predicate == :nil?
            "expected nil, got #{@actual.inspect}"
          else
            "expected #{predicate}#{args_to_s} to return true, got #{@result.inspect}"
          end
        else
          "expected #{@comparison_method} #{expected}, got #{@actual.inspect}".gsub('  ',' ')
        end
      end
Register or log in to add new notes.