control 'chef_client_wrapper' do
  chef_client_log_dir = '/var/log/chef_client'
  describe directory chef_client_log_dir do
    it { should exist }
    its('owner') { should eq 'root' }
    its('mode') { should cmp '0755' }
  end
end
