Class: Spec::Expectations::NegativeExpectationMatcherHandler
- Defined in:
- lib/gems/rspec-1.1.12/lib/spec/expectations/handler.rb
Class Method Summary collapse
Class Method Details
.handle_matcher(actual, matcher, &block) ⇒ Object
19 20 21 22 23 24 25 26 27 28 |
# File 'lib/gems/rspec-1.1.12/lib/spec/expectations/handler.rb', line 19 def self.handle_matcher(actual, matcher, &block) ::Spec::Matchers.last_should = :should_not ::Spec::Matchers.last_matcher = matcher return ::Spec::Matchers::NegativeOperatorMatcher.new(actual) if matcher.nil? match = matcher.matches?(actual, &block) ::Spec::Expectations.fail_with(matcher.) if match match end |