Sha256: befbf3da48042b329e3e85358d7f878926e1f2ef6d9cd1a75086e83891b63acf
Contents?: true
Size: 557 Bytes
Versions: 5
Compression:
Stored size: 557 Bytes
Contents
require 'spec_helper' set :os, :family => 'solaris' describe commands.command_class('cron').create do it { should be_an_instance_of(Specinfra::Command::Solaris::Base::Cron) } end describe cron do it { should have_entry '* * * * * /usr/local/bin/batch.sh' } end describe cron do it { should_not have_entry 'invalid entry' } end describe cron do it { should have_entry('* * * * * /usr/local/bin/batch.sh').with_user('root') } end describe cron do it { should_not have_entry('* * * * * /usr/local/bin/batch.sh').with_user('invalid-user') } end
Version data entries
5 entries across 5 versions & 1 rubygems