Sha256: a5e7a453058028224ad66a0fe8b5450f5d91f26c4b07555c59bc789a68e317f5
Contents?: true
Size: 1.05 KB
Versions: 13
Compression:
Stored size: 1.05 KB
Contents
require_relative '../../spec_helper' require_relative '../../../lib/reek/smells/module_initialize' require_relative 'smell_detector_shared' RSpec.describe Reek::Smells::ModuleInitialize do context 'module' do context 'with method named initialize' do it 'smells' do src = <<-EOF module A def initialize; end end EOF expect(src).to reek_of(:ModuleInitialize) end end context 'with method named initialize in a nested class' do it 'does not smell' do src = <<-EOF module A class B def initialize; end end end EOF expect(src).not_to reek_of(:ModuleInitialize) end end context 'with method named initialize in a nested struct' do it 'does not smell' do src = <<-EOF module A B = Struct.new(:c) do def initialize; end end end EOF expect(src).not_to reek_of(:ModuleInitialize) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems