class RSpec::Core::Configuration

def disable_monkey_patching!

Other tags:
    Note: - If the user uses this options with `mock_with :mocha`
    Note: - It configures rspec-mocks and rspec-expectations only
def disable_monkey_patching!
  self.expose_dsl_globally = false
  self.disable_monkey_patching = true
  conditionally_disable_mocks_monkey_patching
  conditionally_disable_expectations_monkey_patching
end