Class: SuperDiff::EqualityMatchers::Hash

Inherits:
Base
  • Object
show all
Defined in:
lib/super_diff/equality_matchers/hash.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
# File 'lib/super_diff/equality_matchers/hash.rb', line 4

def self.applies_to?(value)
  value.class == ::Hash
end

Instance Method Details

#failObject



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

def fail
  <<~OUTPUT.strip
    Differing hashes.

    #{
      Helpers.style(
        :expected,
        "Expected: " +
        ObjectInspection.inspect(expected, as_single_line: true),
      )
    }
    #{
      Helpers.style(
        :actual,
        "  Actual: " +
        ObjectInspection.inspect(actual, as_single_line: true),
      )
    }

    Diff:

    #{diff}
  OUTPUT
end