Sha256: 5b17c76e9ec8e5ce112a426d5cca825468945bac5325502648b6b3731ee39071

Contents?: true

Size: 1.09 KB

Versions: 3

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true

require_relative '../examiner'
require_relative '../report/simple_warning_formatter'
require_relative 'should_reek_of'
require_relative 'smell_matcher'

module Reek
  module Spec
    #
    # An rspec matcher that matches when the +actual+ has the specified
    # code smell and no others.
    #
    class ShouldReekOnlyOf < ShouldReekOf
      def matches?(source)
        matches_examiner?(Examiner.new(source, configuration: configuration))
      end

      def matches_examiner?(examiner)
        self.examiner = examiner
        self.warnings = examiner.smells
        return false if warnings.empty?
        warnings.all? { |warning| SmellMatcher.new(warning).matches?(smell_type) }
      end

      def failure_message
        rpt = Report::SimpleWarningFormatter.new.format_list(warnings)
        "Expected #{examiner.origin} to reek only of #{smell_type}, but got:\n#{rpt}"
      end

      def failure_message_when_negated
        "Expected #{examiner.origin} not to reek only of #{smell_type}, but it did"
      end

      private

      attr_accessor :warnings
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
reek-5.0.2 lib/reek/spec/should_reek_only_of.rb
reek-5.0.1 lib/reek/spec/should_reek_only_of.rb
reek-5.0.0 lib/reek/spec/should_reek_only_of.rb