module RSpec::Core::SharedExampleGroup::TopLevelDSL

def self.definitions

Other tags:
    Private: -
def self.definitions
  proc do
    def shared_examples(name, *args, &block)
      RSpec.world.shared_example_group_registry.add(:main, name, *args, &block)
    end
    alias shared_context      shared_examples
    alias shared_examples_for shared_examples
  end
end