class RSpec::Core::Hooks::AroundHook

@private

def execute_with(example, procsy)

def execute_with(example, procsy)
  example.instance_exec(procsy, &block)
  return if procsy.executed?
  Pending.mark_skipped!(example, "#{hook_description} did not execute the example")
end

def hook_description

def hook_description
  "around hook at #{Metadata.relative_path(block.source_location.join(':'))}"
end

def hook_description

def hook_description
  "around hook"
end