module VCR::Hooks

def invoke_hook(hook_type, *args)

def invoke_hook(hook_type, *args)
  hooks[hook_type].map do |hook|
    hook.conditionally_invoke(*args)
  end
end