Sha256: deeec30d654bec9b3b6199cd7363c3bc781a942e64d1b656256f9e7a81ee3627
Contents?: true
Size: 1.08 KB
Versions: 2
Compression:
Stored size: 1.08 KB
Contents
require_relative '../../spec_helper' require_lib 'reek/context/module_context' require_relative 'smell_detector_shared' RSpec.describe Reek::Smells::PrimaDonnaMethod do it 'should report nothing when method and bang counterpart exist' do expect('class C; def m; end; def m!; end; end').not_to reek_of(:PrimaDonnaMethod) end it 'should report PrimaDonnaMethod when only bang method exists' do expect('class C; def m!; end; end').to reek_of(:PrimaDonnaMethod) end describe 'the right smell' do let(:detector) { build(:smell_detector, smell_type: :PrimaDonnaMethod, source: 'source_name') } let(:src) { 'class C; def m!; end; end' } let(:ctx) do Reek::Context::ModuleContext.new(nil, Reek::Source::SourceCode.from(src).syntax_tree) end it 'should be reported' do smells = detector.examine_context(ctx) warning = smells[0] expect(warning.smell_category).to eq('PrimaDonnaMethod') expect(warning.smell_type).to eq('PrimaDonnaMethod') expect(warning.lines).to eq([1]) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
reek-3.5.0 | spec/reek/smells/prima_donna_method_spec.rb |
reek-3.4.1 | spec/reek/smells/prima_donna_method_spec.rb |