class RSpec::Matchers::DSL::Matcher
def method_missing(method, *args, &block)
def method_missing(method, *args, &block) if @matcher_execution_context.respond_to?(method) @matcher_execution_context.__send__ method, *args, &block else super(method, *args, &block) end end