Sha256: d4bed144aa6481820d4fa78009775b009a33d10510744c9cd4cc726845f4b29c

Contents?: true

Size: 1.93 KB

Versions: 5

Compression:

Stored size: 1.93 KB

Contents

module Spec
  module Expectations
    class InvalidMatcherError < ArgumentError; end        
    
    module MatcherHandlerHelper
      def describe_matcher(matcher)
        matcher.respond_to?(:description) ? matcher.description : "[#{matcher.class.name} does not provide a description]"
      end
    end
    
    class ExpectationMatcherHandler        
      class << self
        include MatcherHandlerHelper
        def handle_matcher(actual, matcher, &block)
          if :use_operator_matcher == matcher
            return Spec::Matchers::PositiveOperatorMatcher.new(actual)
          end

          unless matcher.respond_to?(:matches?)
            raise InvalidMatcherError, "Expected a matcher, got #{matcher.inspect}."
          end
          
          match = matcher.matches?(actual, &block)
          ::Spec::Matchers.generated_description = "should #{describe_matcher(matcher)}"
          Spec::Expectations.fail_with(matcher.failure_message) unless match
          match
        end
      end
    end

    class NegativeExpectationMatcherHandler
      class << self
        include MatcherHandlerHelper
        def handle_matcher(actual, matcher, &block)
          if :use_operator_matcher == matcher
            return Spec::Matchers::NegativeOperatorMatcher.new(actual)
          end
          
          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)
          ::Spec::Matchers.generated_description = "should not #{describe_matcher(matcher)}"
          Spec::Expectations.fail_with(matcher.negative_failure_message) if match
          match
        end
      end
    end

  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
rspec-0.0.10 lib/spec/expectations/handler.rb
spree-0.4.1 vendor/plugins/rspec/lib/spec/expectations/handler.rb
spree-0.4.0 vendor/plugins/rspec/lib/spec/expectations/handler.rb
spree-0.5.0 vendor/plugins/rspec/lib/spec/expectations/handler.rb
spree-0.5.1 vendor/plugins/rspec/lib/spec/expectations/handler.rb