Sha256: d17ddfe0aaa0d99f08e07415584206d19e01605606061509fcab3ac66e96d8c7

Contents?: true

Size: 1.24 KB

Versions: 17

Compression:

Stored size: 1.24 KB

Contents

module Spec
  module Expectations
    
    module MatcherHandlerHelper
      def describe(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)
          match = matcher.matches?(actual, &block)
          ::Spec::Matchers.generated_description = "should #{describe(matcher)}"
          Spec::Expectations.fail_with(matcher.failure_message) unless match
        end
      end
    end

    class NegativeExpectationMatcherHandler
      class << self
        include MatcherHandlerHelper
        def handle_matcher(actual, matcher, &block)
          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)}"
          Spec::Expectations.fail_with(matcher.negative_failure_message) if match
        end
      end
    end

  end
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
has_finder-0.1.2 spec/rails/vendor/plugins/rspec/lib/spec/expectations/handler.rb
has_finder-0.1.1 spec/rails/vendor/plugins/rspec/lib/spec/expectations/handler.rb
has_finder-0.1.3 spec/rails/vendor/plugins/rspec/lib/spec/expectations/handler.rb
rspec-1.0.5 lib/spec/expectations/handler.rb
rspec-0.9.0 lib/spec/expectations/handler.rb
rspec-0.9.2 lib/spec/expectations/handler.rb
rspec-0.9.1 lib/spec/expectations/handler.rb
rspec-1.0.0 lib/spec/expectations/handler.rb
rspec-1.0.2 lib/spec/expectations/handler.rb
rspec-1.0.3 lib/spec/expectations/handler.rb
rspec-1.0.4 lib/spec/expectations/handler.rb
rspec-0.9.3 lib/spec/expectations/handler.rb
rspec-0.9.4 lib/spec/expectations/handler.rb
rspec-1.0.1 lib/spec/expectations/handler.rb
rspec-1.0.6 lib/spec/expectations/handler.rb
rspec-1.0.7 lib/spec/expectations/handler.rb
rspec-1.0.8 lib/spec/expectations/handler.rb