Sha256: 38a51f37d6920d0cb36ba04e33d54a34320876b00bc639dc053cc59dd2130331
Contents?: true
Size: 833 Bytes
Versions: 5331
Compression:
Stored size: 833 Bytes
Contents
module RSpec module Matchers module BuiltIn # @api private # Provides the implementation for `eql`. # Not intended to be instantiated directly. class Eql < BaseMatcher # @api private # @return [String] def failure_message "\nexpected: #{expected_formatted}\n got: #{actual_formatted}\n\n(compared using eql?)\n" end # @api private # @return [String] def failure_message_when_negated "\nexpected: value != #{expected_formatted}\n got: #{actual_formatted}\n\n(compared using eql?)\n" end # @api private # @return [Boolean] def diffable? true end private def match(expected, actual) actual.eql? expected end end end end end
Version data entries
5,331 entries across 5,245 versions & 119 rubygems