Pattern: Use of remove_const
Issue: -
Checks that remove_const
is not used in specs.
# bad
it 'does something' do
Object.send(:remove_const, :SomeConstant)
end
before do
SomeClass.send(:remove_const, :SomeConstant)
end
Pattern: Use of remove_const
Issue: -
Checks that remove_const
is not used in specs.
# bad
it 'does something' do
Object.send(:remove_const, :SomeConstant)
end
before do
SomeClass.send(:remove_const, :SomeConstant)
end