class RSpec::Matchers::BuiltIn::Match

Public Instance Methods

diffable?() click to toggle source
# File lib/rspec/matchers/built_in/match.rb, line 10
def diffable?
  true
end
match(expected, actual) click to toggle source
# File lib/rspec/matchers/built_in/match.rb, line 6
def match(expected, actual)
  actual.match expected
end