module RSpec::Core::Hooks

def hooks

def hooks
  @hooks ||= { 
    :around => { :each => [] },
    :before => { :each => [], :all => [], :suite => [] }, 
    :after => { :each => [], :all => [], :suite => [] } 
  }
end