Sha256: eef63c65a1248fcae8a9b46fccc96ce14c04e5d7734aba19c030d930dd2c7057

Contents?: true

Size: 835 Bytes

Versions: 1

Compression:

Stored size: 835 Bytes

Contents

require_relative '../../spec_helper'
require_relative '../../../lib/reek/core/warning_collector'
require_relative '../../../lib/reek/smell_warning'

describe Reek::Core::WarningCollector do
  before(:each) do
    @collector = Reek::Core::WarningCollector.new
  end

  context 'when empty' do
    it 'reports no warnings' do
      expect(@collector.warnings).to eq([])
    end
  end

  context 'with one warning' do
    before :each do
      @warning = Reek::SmellWarning.new(Reek::Smells::FeatureEnvy.new(''),
                                        context: 'fred',
                                        lines:   [1, 2, 3],
                                        message: 'hello')
      @collector.found_smell(@warning)
    end
    it 'reports that warning' do
      expect(@collector.warnings).to eq([@warning])
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reek-2.1.0 spec/reek/core/warning_collector_spec.rb