module RSpec::Expectations::Syntax

def disable_should(syntax_host=default_should_host)

Other tags:
    Api: - private
def disable_should(syntax_host=default_should_host)
  return unless should_enabled?(syntax_host)
  syntax_host.module_exec do
    undef should
    undef should_not
  end
end