module RSpec::Core::SharedExampleGroup::TopLevelDSL

def self.remove_globally!

Other tags:
    Api: - private
def self.remove_globally!
  return unless exposed_globally?
  Core::DSL.change_global_dsl do
    undef shared_examples
    undef shared_context
    undef shared_examples_for
  end
  @exposed_globally = false
end