我正在尝试设置一个 cronjob 来ls
每天运行一次命令(在此示例中)。为此,我正在使用cron 资源。
问题是我不知道如何使用 Inspect 对其进行测试。我尝试使用crontab,但它不起作用。
这是代码:
// code
cron 'my-ls' do
minute '1'
hour '0'
command 'ls'
end
// test
describe crontab.commands('ls') do
its('minutes') { should cmp '1' }
its('hours') { should cmp '0' }
end
它没有说:
× hours should cmp == "0"
expected: "0"
got: []
(compared using `cmp` matcher)
× minutes should cmp == "1"
expected: "1"
got: []
(compared using `cmp` matcher)
PS:我也尝试过cron_d
使用cron 食谱