Class: Mutant::Predicate::Attribute::Equality

Inherits:
Mutant::Predicate::Attribute show all
Defined in:
lib/mutant/predicate/attribute.rb

Overview

Equality based attribute predicate

Constant Summary collapse

PATTERN =
/\Acode:(?<code>[[:xdigit:]]{1,6})\z/.freeze

Instance Method Summary collapse

Methods inherited from Mutant::Predicate

handle

Instance Method Details

#match?(object) ⇒ true, false

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Test for match

Parameters:

  • object (Object)

Returns:

  • (true)

    if attribute value matches expectation

  • (false)

    otherwise



61
62
63
# File 'lib/mutant/predicate/attribute.rb', line 61

def match?(object)
  expectation.eql?(value(object))
end