Select Git revision
NewOseForm.php
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
postfix_spec.rb 416 B
require 'spec_helper'
describe 'postfix' do
context 'when on Debian' do
let (:facts) { {
:operatingsystem => 'Debian',
:osfamily => 'Debian',
} }
it { should contain_package('postfix') }
end
context 'when on RedHat' do
let (:facts) { {
:operatingsystem => 'RedHat',
:osfamily => 'RedHat',
} }
it { should contain_package('postfix') }
end
end