module Pact::RSpec::Matchers::RSpec2Delegator

Public Instance Methods

method_missing(method, *args, &block) click to toggle source

For backwards compatibility with rspec-2

Calls superclass method
# File lib/pact/provider/rspec/matchers.rb, line 12
def method_missing(method, *args, &block)
  if method_name == :failure_message_for_should
    failure_message method, *args, &block
  else
    super
  end
end