Method: Chef::Cookbook::SyntaxCheck#untested_template_files

Defined in:
lib/chef/cookbook/syntax_check.rb

#untested_template_filesObject



72
73
74
75
76
77
78
79
80
81
# File 'lib/chef/cookbook/syntax_check.rb', line 72

def untested_template_files
  template_files.reject do |file| 
    if validated?(file)
      Chef::Log.debug("template #{file} is unchanged, skipping syntax check")
      true
    else
      false
    end
  end
end