module RSpec::Core::Hooks

def hooks

Other tags:
    Private: -
def hooks
  @hooks ||= {
    :around => { :each => AroundHookCollection.new },
    :before => { :each => [], :all => [], :suite => HookCollection.new },
    :after =>  { :each => [], :all => [], :suite => HookCollection.new }
  }
end