Sha256: 210b52e36c675bdc0e2ad977867731e86a3f4a34b16d3489a3e7a2783afc5c46

Contents?: true

Size: 912 Bytes

Versions: 1

Compression:

Stored size: 912 Bytes

Contents

require_relative '../../spec_helper'

RSpec.shared_examples_for 'SmellDetector' do
  context 'exception matching follows the context' do
    let(:ctx) { double('context') }

    before { allow(ctx).to receive(:config_for).and_return({}) }

    it 'when false' do
      expect(ctx).to receive(:matches?).at_least(:once).and_return(false)
      expect(detector.exception?(ctx)).to eq(false)
    end

    it 'when true' do
      expect(ctx).to receive(:matches?).at_least(:once).and_return(true)
      expect(detector.exception?(ctx)).to eq(true)
    end
  end
end

RSpec.shared_examples_for 'common fields set correctly' do
  it 'reports the source' do
    expect(warning.source).to eq('string')
  end
  it 'reports the smell class' do
    expect(warning.smell_category).to eq(detector.smell_category)
  end
  it 'reports the smell sub class' do
    expect(warning.smell_type).to eq(detector.smell_type)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reek-3.6.0 spec/reek/smells/smell_detector_shared.rb