class RuboCop::Cop::RSpec::RemoveConst

Checks that ‘remove_const` is not used in specs.

@example

# bad
it 'does something' do
  Object.send(:remove_const, :SomeConstant)
end

before do
  SomeClass.send(:remove_const, :SomeConstant)
end