class ChefCLI::Policyfile::DSL

def initialize(storage_config, chef_config: nil)

def initialize(storage_config, chef_config: nil)
  @name = nil
  @errors = []
  @run_list = []
  @named_run_lists = {}
  @included_policies = []
  @default_source = [ NullCookbookSource.new ]
  @cookbook_location_specs = {}
  @storage_config = storage_config
  @chef_config = chef_config
  @node_attributes = Chef::Node::Attribute.new({}, {}, {}, {})
end