On Thu, Jan 8, 2009 at 5:26 PM, Leandro Pedroni <[email protected]> wrote:
> rspec 1.1.11 and it's rails sidekick.
>
> After writing a few specs for an object I created that inherits form
> an Hash I noticed that eql wasn't matching hashes that where actually
> matching (I'm pretty sure it worked fine before):
>
> {:foo => 0, :bar => 1}.should eql({:foo => 0, :bar => 1})
> # => expected {:foo=>0, :bar=>1}, got {:foo=>0, :bar=>1}
> (using .eql?)
>
> h={:foo => 0, :bar => 1}
> h.should eql(h)
> # => pass
>
> by the way == still works:
> ({:foo => 0, :bar => 1} == {:foo => 0, :bar => 1}).should
> # => Still passes
>
> It works ok with everything else...
> I obviously did something wrong. Any clue? Where should I look?
>
http://rspec.rubyforge.org/rspec/1.1.12/classes/Spec/Matchers.html#M000468
Also - read up on Ruby's semantics of eql?, equal? and ==
http://letmegooglethatforyou.com/?q=ruby+eql%3F+equal%3F+%3D%3D
:-)
>
> Cheers
> _______________________________________________
> rspec-users mailing list
> [email protected]
> http://rubyforge.org/mailman/listinfo/rspec-users
>
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users