Skip to content
Snippets Groups Projects
Commit 51188fa6 authored by Raphaël Pinson's avatar Raphaël Pinson
Browse files

Add tests

parent 3e1f95ab
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,11 @@ describe 'postfix' do
it { should contain_file('/etc/aliases').with_content("# file managed by puppet\n") }
it { should contain_exec('newaliases').with_refreshonly('true') }
it { should contain_file('/etc/postfix/master.cf') }
it { should contain_file('/etc/postfix/main.cf' ) }
it { should contain_postfix__config('myorigin') }
it { should contain_postfix__config('alias_maps') }
it { should contain_postfix__config('inet_interfaces') }
end
context 'when on RedHat' do
......@@ -31,5 +36,13 @@ describe 'postfix' do
it { should contain_file('/etc/aliases').with_content("# file managed by puppet\n") }
it { should contain_exec('newaliases').with_refreshonly('true') }
it { should contain_file('/etc/postfix/master.cf') }
it { should contain_file('/etc/postfix/main.cf' ) }
it { should contain_postfix__config('myorigin') }
it { should contain_postfix__config('alias_maps') }
it { should contain_postfix__config('inet_interfaces') }
it { should contain_postfix__config('sendmail_path') }
it { should contain_postfix__config('newaliases_path') }
it { should contain_postfix__config('mailq_path') }
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment