class RSpec::Core::Configuration

def configure_existing_groups(mod, meta, application_method)

Other tags:
    Private: -
def configure_existing_groups(mod, meta, application_method)
  RSpec.world.all_example_groups.each do |group|
    next unless meta.empty? || MetadataFilter.apply?(:any?, meta, group.metadata)
    __send__(application_method, mod, group)
  end
end