2008-06-18 02:57:57 -04:00
|
|
|
module Spec
|
|
|
|
|
module Expectations
|
|
|
|
|
class InvalidMatcherError < ArgumentError; end
|
|
|
|
|
|
|
|
|
|
class ExpectationMatcherHandler
|
|
|
|
|
class << self
|
|
|
|
|
def handle_matcher(actual, matcher, &block)
|
2008-11-29 12:00:06 -05:00
|
|
|
::Spec::Matchers.last_should = "should"
|
|
|
|
|
return Spec::Matchers::PositiveOperatorMatcher.new(actual) if matcher.nil?
|
2008-06-18 02:57:57 -04:00
|
|
|
|
|
|
|
|
unless matcher.respond_to?(:matches?)
|
|
|
|
|
raise InvalidMatcherError, "Expected a matcher, got #{matcher.inspect}."
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
match = matcher.matches?(actual, &block)
|
2008-11-29 12:00:06 -05:00
|
|
|
::Spec::Matchers.last_matcher = matcher
|
2008-06-18 02:57:57 -04:00
|
|
|
Spec::Expectations.fail_with(matcher.failure_message) unless match
|
2008-11-29 12:00:06 -05:00
|
|
|
match
|
2008-06-18 02:57:57 -04:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
class NegativeExpectationMatcherHandler
|
|
|
|
|
class << self
|
|
|
|
|
def handle_matcher(actual, matcher, &block)
|
2008-11-29 12:00:06 -05:00
|
|
|
::Spec::Matchers.last_should = "should not"
|
|
|
|
|
return Spec::Matchers::NegativeOperatorMatcher.new(actual) if matcher.nil?
|
2008-06-18 02:57:57 -04:00
|
|
|
|
|
|
|
|
unless matcher.respond_to?(:matches?)
|
|
|
|
|
raise InvalidMatcherError, "Expected a matcher, got #{matcher.inspect}."
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
unless matcher.respond_to?(:negative_failure_message)
|
|
|
|
|
Spec::Expectations.fail_with(
|
|
|
|
|
<<-EOF
|
|
|
|
|
Matcher does not support should_not.
|
|
|
|
|
See Spec::Matchers for more information
|
|
|
|
|
about matchers.
|
|
|
|
|
EOF
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
match = matcher.matches?(actual, &block)
|
2008-11-29 12:00:06 -05:00
|
|
|
::Spec::Matchers.last_matcher = matcher
|
2008-06-18 02:57:57 -04:00
|
|
|
Spec::Expectations.fail_with(matcher.negative_failure_message) if match
|
2008-11-29 12:00:06 -05:00
|
|
|
match
|
2008-06-18 02:57:57 -04:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|