class RSpec::Core::ExampleGroup

def self.find_shared(label, name)

def self.find_shared(label, name)
  if world.shared_example_groups.has_key?(name)
    world.shared_example_groups[name]
  else
    raise ArgumentError, "Could not find shared #{label} #{name.inspect}"
  end          
end