Sha256: c6af9ce57e9de9f0a6931ed3db8a00ff734aadd91da35c8b5c953ce463f9eec7

Contents?: true

Size: 926 Bytes

Versions: 12

Compression:

Stored size: 926 Bytes

Contents

module RSpec
  module Matchers
    # :call-seq:
    #   should eq(expected)
    #   should_not eq(expected)
    #
    # Passes if actual == expected.
    #
    # See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more information about equality in Ruby.
    #
    # == Examples
    #
    #   5.should eq(5)
    #   5.should_not eq(3)
    def eq(expected)
      Matcher.new :eq, expected do |_expected_|
        match do |actual|
          actual == _expected_
        end

        failure_message_for_should do |actual|
          <<-MESSAGE

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

(compared using ==)
MESSAGE
        end

        failure_message_for_should_not do |actual|
          <<-MESSAGE

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

(compared using ==)
MESSAGE
        end

        description do
          "== #{_expected_}"
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
rspec-expectations-2.0.0.beta.20 lib/rspec/matchers/eq.rb
rspec-expectations-2.0.0.beta.19 lib/rspec/matchers/eq.rb
rspec-expectations-2.0.0.beta.18 lib/rspec/matchers/eq.rb
rspec-expectations-2.0.0.beta.17 lib/rspec/matchers/eq.rb
rspec-expectations-2.0.0.beta.16 lib/rspec/matchers/eq.rb
rspec-expectations-2.0.0.beta.15 lib/rspec/matchers/eq.rb
rspec-expectations-2.0.0.beta.14 lib/rspec/matchers/eq.rb
rspec-expectations-2.0.0.beta.13 lib/rspec/matchers/eq.rb
rspec-expectations-2.0.0.beta.12 lib/rspec/matchers/eq.rb
rspec-expectations-2.0.0.beta.11 lib/rspec/matchers/eq.rb
rspec-expectations-2.0.0.beta.10 lib/rspec/matchers/eq.rb
rspec-expectations-2.0.0.beta.9 lib/rspec/matchers/eq.rb