Sha256: bd8d4f972702833b121386011ec53840eb2aa88f13d779faa8df740b07a861bb
Contents?: true
Size: 1.09 KB
Versions: 28
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
28 entries across 26 versions & 2 rubygems