describe 'apache::mod::wsgi', :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 include_class("apache::params") } it { should contain_apache__mod('wsgi') } it { should contain_package("libapache2-mod-wsgi") } end context "on a RedHat OS" do let :facts do { :osfamily => 'RedHat', :operatingsystemrelease => '6', :concat_basedir => '/dne', } end it { should include_class("apache::params") } it { should contain_apache__mod('wsgi') } it { should contain_package("mod_wsgi") } end end