# File lib/rspec/core/hooks.rb, line 100
      def hooks
        @hooks ||= {
          :around => { :each => AroundHookCollection.new },
          :before => { :each => [], :all => [], :suite => HookCollection.new },
          :after =>  { :each => [], :all => [], :suite => HookCollection.new }
        }
      end