1
0
mirror of https://github.com/krislamo/puppet-rsnapshot synced 2024-09-19 17:10:34 +00:00

add some tests

This commit is contained in:
Norbert Varzariu 2017-04-24 19:42:31 +02:00
parent e1f5fa7ebe
commit efa6ef8808

View File

@ -32,6 +32,9 @@ describe 'rsnapshot' do
it { is_expected.to exist }
its(:content) { is_expected.to match 'D /var/run/rsnapshot 0755 root root -' }
end
describe file('/var/run/rsnapshot') do
it { should be_directory }
end
describe file('/etc/rsnapshot/localhost.rsnapshot.conf') do
it { is_expected.to exist }
its(:content) { is_expected.to match 'backup' }
@ -53,5 +56,9 @@ describe 'rsnapshot' do
it { is_expected.to exist }
its(:content) { is_expected.to match 'example.com' }
end
describe cron do
its(:table) { should match /.*\/etc\/rsnapshot\/localhost.rsnapshot.conf daily.*/ }
its(:table) { should match /.*\/etc\/rsnapshot\/example\.com\.rsnapshot\.conf daily.*/ }
end
end
end