Sha256: 117d736c25512c3900315b0921df069ed516b7872fa92722d1649813d7f4e534
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
require_relative '../../spec_helper' require_relative '../../../lib/reek/smells/smell_configuration' 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 context 'configuration' do it 'becomes disabled when disabled' do enabled_key = Reek::Smells::SmellConfiguration::ENABLED_KEY detector.configure_with(enabled_key => false) expect(detector).not_to be_enabled end end end RSpec.shared_examples_for 'common fields set correctly' do it 'reports the source' do expect(warning.source).to eq(source_name) 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
reek-3.3.1 | spec/reek/smells/smell_detector_shared.rb |
reek-3.3.0 | spec/reek/smells/smell_detector_shared.rb |