module Pry::Testable

def self.set_testenv_variables

Returns:
  • (void) -
def self.set_testenv_variables
  Pry.config = Pry::Config.new.merge(
    color: false,
    pager: false,
    should_load_rc: false,
    should_load_local_rc: false,
    correct_indent: false,
    collision_warning: false,
    history_save: false,
    history_load: false,
    hooks: Pry::Hooks.new
  )
end