Sha256: d8c4750137243cdd6aaba46fcf451aacf7575922741c26a3abfebc30bfca937d

Contents?: true

Size: 1.53 KB

Versions: 59

Compression:

Stored size: 1.53 KB

Contents

module RSpec
  module Expectations
    class << self
      # @private
      def differ
        @differ ||= Differ.new
      end
      
      # Raises an RSpec::Expectations::ExpectationNotMetError with message.
      # @param [String] message
      # @param [Object] expected
      # @param [Object] actual
      #
      # Adds a diff to the failure message when `expected` and `actual` are
      # both present.
      def fail_with(message, expected=nil, actual=nil)
        if !message
          raise ArgumentError, "Failure message is nil. Does your matcher define the " +
                               "appropriate failure_message_for_* method to return a string?"
        end

        if actual && expected
          if all_strings?(actual, expected)
            if any_multiline_strings?(actual, expected)
              message << "\nDiff:" << differ.diff_as_string(actual, expected)
            end
          elsif no_procs?(actual, expected) && no_numbers?(actual, expected)
            message << "\nDiff:" << differ.diff_as_object(actual, expected)
          end
        end

        raise(RSpec::Expectations::ExpectationNotMetError.new(message))
      end

    private

      def no_procs?(*args)
        args.flatten.none? {|a| Proc === a}
      end

      def all_strings?(*args)
        args.flatten.all? {|a| String === a}
      end

      def any_multiline_strings?(*args)
        all_strings?(*args) && args.any? {|a| a =~ /\n/}
      end

      def no_numbers?(*args)
        args.flatten.none? {|a| Numeric === a}
      end
    end
  end
end

Version data entries

59 entries across 59 versions & 5 rubygems

Version Path
classiccms-0.7.5 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.7.4 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.7.3 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.7.2 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.7.1 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.7.0 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.6.9 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.6.8 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.6.7 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.6.6 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.6.5 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.6.4 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.6.3 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.6.2 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.6.1 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.6.0 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.5.17 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.5.16 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.5.15 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb
classiccms-0.5.14 vendor/bundle/gems/rspec-expectations-2.9.0/lib/rspec/expectations/fail_with.rb