class RSpec::Core::Configuration

def around(scope=nil, *meta, &block)

See {Hooks#around} for full `around` hook docs.

Registers `block` as an `around` hook.
def around(scope=nil, *meta, &block)
  on_existing_matching_groups({}) { |g| g.around(scope, *meta, &block) }
  super(scope, *meta, &block)
end