module RSpec::Matchers

def eq(expected)

expect(5).not_to eq(3)
expect(5).to eq(5)

@example

information about equality in Ruby.
See http://www.ruby-doc.org/core/classes/Object.html#M001057 for more

Passes if actual == expected.
def eq(expected)
  BuiltIn::Eq.new(expected)
end