Sha256: 804939df0743be26eb9a5f1bce5ecd3567fa25593056171eabd52ae9a9ea4d69
Contents?: true
Size: 1.17 KB
Versions: 11
Compression:
Stored size: 1.17 KB
Contents
describe 'apache::mod::auth_kerb', :type => :class do let :pre_condition do 'include apache' end context "on a Debian OS" do let :facts do { :osfamily => 'Debian', :operatingsystemrelease => '6', :concat_basedir => '/dne', } end it { should contain_class("apache::params") } it { should contain_apache__mod("auth_kerb") } it { should contain_package("libapache2-mod-auth-kerb") } end context "on a RedHat OS" do let :facts do { :osfamily => 'RedHat', :operatingsystemrelease => '6', :concat_basedir => '/dne', } end it { should contain_class("apache::params") } it { should contain_apache__mod("auth_kerb") } it { should contain_package("mod_auth_kerb") } end context "on a FreeBSD OS" do let :facts do { :osfamily => 'FreeBSD', :operatingsystemrelease => '9', :concat_basedir => '/dne', } end it { should contain_class("apache::params") } it { should contain_apache__mod("auth_kerb") } it { should contain_package("www/mod_auth_kerb2") } end end
Version data entries
11 entries across 11 versions & 1 rubygems