# File lib/chef_zero/chef_data/default_creator.rb, line 47
      def deleted?(path)
        1.upto(path.size) do |index|
          return true if @deleted[path[0..-index]]
        end
        false
      end