Sha256: 2b41e94552c2d9779c6a26b974116ab206e61a43bad6714e9e343d4d646aac1e

Contents?: true

Size: 1.44 KB

Versions: 16

Compression:

Stored size: 1.44 KB

Contents

require 'spec_helper'
module Rspec
  module Matchers
    describe "equal" do
      
      def inspect_object(o)
        "#<#{o.class}:#{o.object_id}> => #{o.inspect}"
      end
      
      it "should match when actual.equal?(expected)" do
        1.should equal(1)
      end

      it "should not match when !actual.equal?(expected)" do
        1.should_not equal("1")
      end
      
      it "should describe itself" do
        matcher = equal(1)
        matcher.matches?(1)
        matcher.description.should == "equal 1"
      end
      
      it "should provide message on #failure_message" do
        expected, actual = "1", "1"
        matcher = equal(expected)
        matcher.matches?(actual)
        
        matcher.failure_message_for_should.should == <<-MESSAGE

expected #{inspect_object(expected)}
     got #{inspect_object(actual)}

Compared using equal?, which compares object identity,
but expected and actual are not the same object. Use
'actual.should == expected' if you don't care about
object identity in this example.

MESSAGE
      end
      
      it "should provide message on #negative_failure_message" do
        expected = actual = "1"
        matcher = equal(expected)
        matcher.matches?(actual)
        matcher.failure_message_for_should_not.should == <<-MESSAGE

expected not #{inspect_object(expected)}
         got #{inspect_object(actual)}

Compared using equal?, which compares object identity.

MESSAGE
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

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