class RSpec::Matchers::BuiltIn::ContainExactly

Public Instance Methods

expected_for_diff() click to toggle source

Override this method so that the differ knows that this is a partial collection

# File lib/super_diff/rspec/monkey_patches.rb, line 460
def expected_for_diff
  matchers.a_collection_containing_exactly(*expected)
end
expected_for_matcher_text() click to toggle source
# File lib/super_diff/rspec/monkey_patches.rb, line 466
def expected_for_matcher_text
  expected
end
matcher_text_builder_class() click to toggle source
# File lib/super_diff/rspec/monkey_patches.rb, line 470
def matcher_text_builder_class
  SuperDiff::RSpec::MatcherTextBuilders::ContainExactly
end