Sha256: 5d0b4c494d6f706510273d46a010793e8355671bee3092408ad9e9eaaa01d754
Contents?: true
Size: 1.33 KB
Versions: 8
Compression:
Stored size: 1.33 KB
Contents
require File.join(File.dirname(File.dirname(File.dirname(File.expand_path(__FILE__)))), 'spec_helper') require File.join(File.dirname(File.dirname(File.dirname(File.dirname(File.expand_path(__FILE__))))), 'lib', 'reek', 'core', 'smell_configuration') include Reek::Core shared_examples_for 'SmellDetector' do context 'exception matching follows the context' do before :each do @ctx = mock('context') # @ctx.should_receive(:exp).and_return(nil) @ctx.should_receive(:config).and_return({}) end it 'when false' do @ctx.should_receive(:matches?).at_least(:once).and_return(false) @detector.exception?(@ctx).should == false end it 'when true' do @ctx.should_receive(:matches?).at_least(:once).and_return(true) @detector.exception?(@ctx).should == true end end context 'configuration' do it 'becomes disabled when disabled' do @detector.configure_with({SmellConfiguration::ENABLED_KEY => false}) @detector.should_not be_enabled end end end shared_examples_for 'common fields set correctly' do it 'reports the source' do @warning.source.should == @source_name end it 'reports the class' do @warning.smell_class.should == @detector.class::SMELL_CLASS end it 'reports the subclass' do @warning.subclass.should == @detector.class::SMELL_SUBCLASS end end
Version data entries
8 entries across 8 versions & 1 rubygems