Sha256: bc0894fa7850c5f803537d4d9fb9ef57dab141ada1681a441928429828f5630a
Contents?: true
Size: 1.04 KB
Versions: 11
Compression:
Stored size: 1.04 KB
Contents
describe 'apache::mod::itk', :type => :class do let :pre_condition do 'class { "apache": mpm_module => false, }' 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_not contain_apache__mod('itk') } it { should contain_file("/etc/apache2/mods-available/itk.conf").with_ensure('file') } it { should contain_file("/etc/apache2/mods-enabled/itk.conf").with_ensure('link') } it { should contain_package("apache2-mpm-itk") } 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_not contain_apache__mod('itk') } it { should contain_file("/usr/local/etc/apache22/Modules/itk.conf").with_ensure('file') } end end
Version data entries
11 entries across 11 versions & 1 rubygems