diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-03-23 13:11:32 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-03-23 13:11:32 -0700 |
commit | 2bdbd46f8034bf0ef7939a735e62e4acc5657703 (patch) | |
tree | 33eed9a1a33e5ea30072d1b31134161151c9da2c /spec/functional | |
parent | fdb5f1ecae566acb83500cd47db91e28e635bfcf (diff) | |
download | chef-2bdbd46f8034bf0ef7939a735e62e4acc5657703.tar.gz |
Make the spec look more like reality
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/functional')
-rw-r--r-- | spec/functional/resource/cron_spec.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/spec/functional/resource/cron_spec.rb b/spec/functional/resource/cron_spec.rb index 0b35559cae..d4568e25cb 100644 --- a/spec/functional/resource/cron_spec.rb +++ b/spec/functional/resource/cron_spec.rb @@ -57,10 +57,6 @@ describe Chef::Resource::Cron, :requires_root, :unix_only do new_resource = Chef::Resource::Cron.new("Chef functional test cron", run_context) new_resource.user "root" new_resource.minute "0" - new_resource.hour "" - new_resource.day "" - new_resource.month "" - new_resource.weekday "" new_resource.command "/bin/true" new_resource end |