Sha256: 6a641bfd7ffbb81763eb67948e8a6e99ab07b69fe98f307c7e50ab4f13c4cbbe

Contents?: true

Size: 930 Bytes

Versions: 18

Compression:

Stored size: 930 Bytes

Contents

module Rspec
  module Matchers
    # :call-seq:
    #   should eql(expected)
    #   should_not eql(expected)
    #
    # Passes if actual and expected are of equal value, but not necessarily the same object.
    #
    # See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more information about equality in Ruby.
    #
    # == Examples
    #
    #   5.should eql(5)
    #   5.should_not eql(3)
    def eql(expected)
      Matcher.new :eql, expected do |_expected_|
        match do |actual|
          actual.eql?(_expected_)
        end

        failure_message_for_should do |actual|
          <<-MESSAGE

expected #{_expected_.inspect}
     got #{actual.inspect}

(compared using eql?)
MESSAGE
        end

        failure_message_for_should_not do |actual|
          <<-MESSAGE

expected #{actual.inspect} not to equal #{_expected_.inspect}

(compared using eql?)
MESSAGE
        end
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
rspec-expectations-2.0.0.beta.8 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.beta.7 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.beta.6 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.beta.5 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.beta.4 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.beta.3 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.beta.2 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.beta.1 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.a10 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.a9 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.a8 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.a7 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.a6 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.a5 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.a4 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.a3 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.a2 lib/rspec/matchers/eql.rb
rspec-expectations-2.0.0.a1 lib/rspec/matchers/eql.rb