class ChefSpec::Renderer

def cookbook_collection(node)

Returns:
  • (Array) -

Parameters:
  • node (Chef::Node) --
def cookbook_collection(node)
  if chef_run.respond_to?(:run_context)
    chef_run.run_context.cookbook_collection # Chef 11.8+
  elsif node.respond_to?(:run_context)
    node.run_context.cookbook_collection # Chef 11+
  else
    node.cookbook_collection # Chef 10
  end
end