class RSpec::Core::ExampleGroup

def self.eval_around_eachs(example, initial_procsy)

def self.eval_around_eachs(example, initial_procsy)
  example.around_hooks.reverse.inject(initial_procsy) do |procsy, around_hook|
    Example.procsy(procsy.metadata) do
      example.example_group_instance.instance_eval_with_args(procsy, &around_hook)
    end
  end
end