module Pry::Testable::Variables

def temporary_constants(*names)

Returns:
  • (void) -

Parameters:
  • names (Array) --
def temporary_constants(*names)
  names.each do |name|
    Object.remove_const name if Object.const_defined?(name)
  end
  yield
ensure
  names.each do |name|
    Object.remove_const name if Object.const_defined?(name)
  end
end