Sha256: 6393005a8e4354e2d1e26aebc2f38cbc13343e4cd4c3ac9e3f59bc4726a38aa3
Contents?: true
Size: 1.14 KB
Versions: 11
Compression:
Stored size: 1.14 KB
Contents
describe 'apache::mod::fcgid', :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('fcgid') } it { should contain_package("libapache2-mod-fcgid") } 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('fcgid') } it { should contain_package("mod_fcgid") } 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('fcgid') } it { should contain_package("www/mod_fcgid") } end end
Version data entries
11 entries across 11 versions & 1 rubygems