method

eql

Importance_1
RSpec latest stable (1.2.8) - 0 notes - Class: Spec::Matchers
eql(expected) public

Passes if actual and expected are of equal value, but not necessarily the same object.

See <a href="http://www.ruby-doc.org/core/classes/Object.html#M001057">http://www.ruby-doc.org/core/classes/Object.html#M001057</a> for more information about equality in Ruby.

Examples

  5.should eql(5)
  5.should_not eql(3)
Show source
Register or log in to add new notes.