class RuboCop::Cop::Chef::Deprecations::VerifyPropertyUsesFileExpansion

In Chef Infra Client 13 the “file” variable for use within the verify property was replaced with the “path” variable.

@example

### incorrect
file '/etc/nginx.conf' do
  verify 'nginx -t -c %{file}'
end

### correct
file '/etc/nginx.conf' do
  verify 'nginx -t -c %{path}'
end