@private
# File lib/rspec/expectations/handler.rb, line 45 def self.handle_matcher(actual, initial_matcher, message=nil, &block) matcher = ExpectationHelper.setup(self, initial_matcher, message) return ::RSpec::Matchers::BuiltIn::PositiveOperatorMatcher.new(actual) unless initial_matcher matcher.matches?(actual, &block) or ExpectationHelper.handle_failure(matcher, message, :failure_message) end
# File lib/rspec/expectations/handler.rb, line 60 def self.opposite_should_method :should_not end
# File lib/rspec/expectations/handler.rb, line 56 def self.should_method :should end
# File lib/rspec/expectations/handler.rb, line 52 def self.verb "should" end