class Rspec::Core::Configuration

def find_advice(desired_advice_type, desired_each_or_all, group)

def find_advice(desired_advice_type, desired_each_or_all, group)
  advice[desired_advice_type][desired_each_or_all].select do |filters, block|
    group.all_apply?(filters)
  end.map { |filters, block| block }
end