Class: SuperDiff::EqualityMatchers::Primitive

Inherits:
Base
  • Object
show all
Defined in:
lib/super_diff/equality_matchers/primitive.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#call

Class Method Details

.applies_to?(value) ⇒ Boolean

Returns:

  • (Boolean)


4
5
6
7
# File 'lib/super_diff/equality_matchers/primitive.rb', line 4

def self.applies_to?(value)
  # TODO: Test all of these options
  SuperDiff.primitive?(value)
end

Instance Method Details

#failObject



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/super_diff/equality_matchers/primitive.rb', line 9

def fail
  <<~OUTPUT.strip
    Differing #{Helpers.plural_type_for(actual)}.

    #{
      Helpers.style(
        :expected,
        "Expected: " +
        SuperDiff.inspect_object(expected, as_lines: false),
      )
    }
    #{
      Helpers.style(
        :actual,
        "  Actual: " +
        SuperDiff.inspect_object(actual, as_lines: false),
      )
    }
  OUTPUT
end