class SuperDiff::RSpec::ObjectInspection::InspectionTreeBuilders::HashIncluding

Public Class Methods

applies_to?(value) click to toggle source
# File lib/super_diff/rspec/object_inspection/inspection_tree_builders/hash_including.rb, line 6
def self.applies_to?(value)
  SuperDiff::RSpec.a_hash_including_something?(value) || SuperDiff::RSpec.hash_including_something?(value)
end

Public Instance Methods

call() click to toggle source
# File lib/super_diff/rspec/object_inspection/inspection_tree_builders/hash_including.rb, line 10
def call
  SuperDiff::ObjectInspection::InspectionTree.new do
    as_lines_when_rendering_to_lines(collection_bookend: :open) do
      add_text "#<a hash including ("
    end

    nested do |value|
      hash =
        if SuperDiff::RSpec.a_hash_including_something?(value)
          value.expecteds.first
        else
          value.instance_variable_get(:@expected)
        end

      insert_hash_inspection_of(hash)
    end

    as_lines_when_rendering_to_lines(collection_bookend: :close) do
      add_text ")>"
    end
  end
end