Sha256: 401445cb915b9cc4d391306f02cf8e804d024dd3c633af435ae1865c9593d866

Contents?: true

Size: 945 Bytes

Versions: 33

Compression:

Stored size: 945 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_|

        diffable

        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

33 entries across 33 versions & 4 rubygems

Version Path
messagebus_ruby_api-0.4.7 spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/eq.rb
messagebus_ruby_api-0.4.4 spec/ruby/1.9.1/gems/rspec-expectations-2.5.0/lib/rspec/matchers/eq.rb
rspec-expectations-2.6.0 lib/rspec/matchers/eq.rb
rspec-expectations-2.6.0.rc6 lib/rspec/matchers/eq.rb
rspec-expectations-2.6.0.rc4 lib/rspec/matchers/eq.rb
rspec-expectations-2.6.0.rc2 lib/rspec/matchers/eq.rb
rspec-expectations-2.5.0 lib/rspec/matchers/eq.rb
vim-jar-0.1.2.0001 bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/eq.rb
rspec-expectations-2.4.0 lib/rspec/matchers/eq.rb
vim-jar-0.1.2 bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/eq.rb
vim-jar-0.1.1 bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/eq.rb
vim-jar-0.1.0 bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/eq.rb
rspec-expectations-2.3.0 lib/rspec/matchers/eq.rb
vim-jar-0.0.3 bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/eq.rb
vim-jar-0.0.2 bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/eq.rb
vim-jar-0.0.1 bundler/ruby/1.8/gems/rspec-expectations-2.1.0/lib/rspec/matchers/eq.rb
rspec-expectations-2.2.0 lib/rspec/matchers/eq.rb
rspec-expectations-2.1.0 lib/rspec/matchers/eq.rb
rspec-expectations-2.0.1 lib/rspec/matchers/eq.rb
gemrage-1.0.0 vendor/ruby/1.8/gems/rspec-expectations-2.0.0/lib/rspec/matchers/eq.rb