Sha256: 7d05be05f22af580d141853e2ecc6d4b4d2fddfb34d59643e8efc175d134b6a2
Contents?: true
Size: 1.15 KB
Versions: 11
Compression:
Stored size: 1.15 KB
Contents
describe 'apache::mod::dav_svn', :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('dav_svn') } it { should contain_package("libapache2-svn") } 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('dav_svn') } it { should contain_package("mod_dav_svn") } 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('dav_svn') } it { should contain_package("devel/subversion") } end end
Version data entries
11 entries across 11 versions & 1 rubygems